Avoid C++14 feature in peglib.h

... which allows to use peglib.h in a C++11 only environment.
This commit is contained in:
hvellyr 2016-06-01 12:32:25 +02:00 committed by gck
parent 86f903b65e
commit f62a726166

View File

@ -194,7 +194,7 @@ private:
template <typename EF>
auto make_scope_exit(EF&& exit_function) -> scope_exit<EF> {
return scope_exit<std::remove_reference_t<EF>>(std::forward<EF>(exit_function));
return scope_exit<typename std::remove_reference<EF>::type>(std::forward<EF>(exit_function));
}
/*-----------------------------------------------------------------------------