Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/compile_error_gcc47'
Browse files Browse the repository at this point in the history
  • Loading branch information
satoren committed Feb 9, 2017
2 parents 77fb26b + 458795d commit 13701eb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion include/kaguya/utility_cxx11.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ namespace kaguya
template<class F, class... Args>
typename FunctionResultType<typename traits::decay<F>::type>::type invoke(F&& f, Args&&... args)
{
return detail::invoke_helper(f, std::forward<Args>(args)...);
return detail::invoke_helper(std::forward<F>(f), std::forward<Args>(args)...);
}

}
Expand Down
1 change: 0 additions & 1 deletion test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
,('gcc-4.5','g++-4.5','',False)
,('gcc-4.6','g++-4.6','-DCMAKE_CXX_FLAGS=-std=c++03',False)
,('gcc-4.7','g++-4.7','-DCMAKE_CXX_FLAGS=-std=c++03',False)
,('gcc-4.7','g++-4.7','-DCMAKE_CXX_FLAGS=-std=c++11',False)
,('gcc-4.8','g++-4.8','-DCMAKE_CXX_FLAGS=-std=c++03',False)
,('gcc-4.8','g++-4.8','-DCMAKE_CXX_FLAGS=-std=c++11',False)
,('gcc-4.9','g++-4.9','-DCMAKE_CXX_FLAGS=-std=c++03',False)
Expand Down

0 comments on commit 13701eb

Please sign in to comment.