Avoid C++14 feature in peglib.h

... which allows to use peglib.h in a C++11 only environment.
pull/20/head
hvellyr 8 years ago committed by gck
parent 86f903b65e
commit f62a726166
  1. 2
      peglib.h

@ -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));
}
/*-----------------------------------------------------------------------------

Loading…
Cancel
Save