Merge pull request #18 from g40/VS2013

VS2013 requires return type for auto
This commit is contained in:
yhirose 2015-12-08 13:01:44 -05:00
commit b7d114a82a

View File

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