Added C++14 function wrappers

This commit is contained in:
John Wellbelove 2024-10-06 18:06:29 +01:00
parent 14ebc350a8
commit 4199ae0298

View File

@ -729,7 +729,7 @@ namespace etl
public:
template<typename... TParams>
constexpr auto operator()(TParams&&... args) const -> decltype(Function)
constexpr auto operator()(TParams&&... args) const -> decltype(Function(etl::forward<TParams>(args)...))
{
return Function(etl::forward<TParams>(args)...);
}