Skip to content

Commit

Permalink
Fix missing whitespace in template declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
jdtournier committed Feb 3, 2015
1 parent 6a3ec89 commit 20ba2f8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,6 @@ try:
if len(compiler_version) == 0: report ('(no version information)')
else: report (compiler_version)
except:
print ('Unexpected error:', str(sys.exc_info()))
error ('''compiler not found!
Use CXX environment variable to set path to compiler, as follows:
Expand Down
2 changes: 1 addition & 1 deletion lib/apply.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ namespace MR {
template <class F, class T>
inline void apply (F && f, T && t)
{
Apply<::std::tuple_size<
Apply< ::std::tuple_size<
typename ::std::decay<T>::type
>::value-1>::apply (::std::forward<F>(f), ::std::forward<T>(t));
}
Expand Down

0 comments on commit 20ba2f8

Please sign in to comment.