Fixed almost all tab and min/max issues found by inspect tool

[SVN r53142]
This commit is contained in:
Jeremiah Willcock 2009-05-20 19:41:20 +00:00
parent 51f9adbfa1
commit e57213b298
3 changed files with 4 additions and 4 deletions

View File

@ -70,8 +70,8 @@ struct result_of_nested_result : F::template result<FArgs>
template<typename F, typename FArgs>
struct result_of_impl<F, FArgs, false>
: mpl::if_<is_function_with_no_args<FArgs>,
result_of_void_impl<F>,
result_of_nested_result<F, FArgs> >::type
result_of_void_impl<F>,
result_of_nested_result<F, FArgs> >::type
{};
} // end namespace detail