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 514dd3c commit c12002d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fit/pipable.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ struct pipe_pack
FIT_RETURNS_CLASS(pipe_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_RETURNS
(make_pipe_closure(FIT_RETURNS_C_CAST(F&&)(FIT_CONST_THIS->get_function(xs...)), fit::pack_forward(FIT_FORWARD(Ts)(xs)...)));
Expand Down

0 comments on commit c12002d

Please sign in to comment.