mstd::not_fn - fix declaration

pull/11211/head
Kevin Bracey 2019-08-12 16:08:40 +03:00
parent cb5c09ff92
commit ff0ce04d11
1 changed files with 1 additions and 1 deletions

View File

@ -474,7 +474,7 @@ public:
}
template <typename F>
impl::not_fn_t<F> not_fn_t(F&& f)
impl::not_fn_t<F> not_fn(F&& f)
{
return impl::not_fn_t<F>(std::forward<F>(f));
}