Skip to content

Commit

Permalink
Fix syntax for msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
pfultz2 committed Dec 31, 2017
1 parent 9956070 commit bc0f598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fit/partial.hpp
Expand Up @@ -151,7 +151,7 @@ struct partial_adaptor_join
constexpr auto operator()(Ts&&... xs) const
#ifdef _MSC_VER
// Workaround ICE on MSVC
noexcept(FIT_IS_NOTHROW_CONSTRUCTIBLE(F, F&&) && fit::pack_join(std::declval<const Pack&>(), fit::pack(FIT_FORWARD(Ts)(xs)...)))
noexcept(FIT_IS_NOTHROW_CONSTRUCTIBLE(F, F&&) && noexcept(fit::pack_join(std::declval<const Pack&>(), fit::pack(FIT_FORWARD(Ts)(xs)...))))
#endif
FIT_PARTIAL_RETURNS
(
Expand Down

0 comments on commit bc0f598

Please sign in to comment.