Merge pull request #18 from g40/VS2013

VS2013 requires return type for auto
pull/21/head
yhirose 9 years ago
commit b7d114a82a
  1. 2
      peglib.h

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

Loading…
Cancel
Save