We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76209b2 commit 499a1c5Copy full SHA for 499a1c5
trompeloeil.hpp
@@ -1695,8 +1695,8 @@ namespace trompeloeil
1695
/* provoke warnings for sign mismatch with applicable compiler flags*/ \
1696
using param_type = ::trompeloeil::call_params_type_t<sig>; \
1697
using call_type = decltype(std::make_tuple(std::forward<U>(u)...)); \
1698
- ::trompeloeil::ignore( \
1699
- ::trompeloeil::is_equal_comparable<param_type, call_type>::value); \
+ auto check = ::trompeloeil::is_equal_comparable<param_type, call_type>::value; \
+ ::trompeloeil::ignore(check); \
1700
return ::trompeloeil::make_call_matcher<sig>(std::forward<U>(u)...); \
1701
} \
1702
}; \
0 commit comments