Skip to content

Commit

Permalink
Add parens for msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
pfultz2 committed Sep 5, 2016
1 parent c12002d commit b196c4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/fit/partial.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ struct partial_adaptor_join
FIT_RETURNS_CLASS(partial_adaptor_join);

template<class... Ts, class=typename std::enable_if<
(sizeof...(Ts) + Pack::fit_function_param_limit::value) < function_param_limit<F>::value
((sizeof...(Ts) + Pack::fit_function_param_limit::value) < function_param_limit<F>::value)
>::type>
constexpr auto operator()(Ts&&... xs) const FIT_SFINAE_RETURNS
(
Expand All @@ -162,7 +162,7 @@ struct partial_adaptor_pack
FIT_RETURNS_CLASS(partial_adaptor_pack);

template<class... Ts, class=typename std::enable_if<
sizeof...(Ts) < function_param_limit<F>::value
(sizeof...(Ts) < function_param_limit<F>::value)
>::type>
constexpr auto operator()(Ts&&... xs) const FIT_SFINAE_RETURNS
(
Expand Down

0 comments on commit b196c4f

Please sign in to comment.