Skip to content

Commit

Permalink
Merge pull request #1701 from jicama/name-clash
Browse files Browse the repository at this point in the history
Fix name meaning change in nested class
  • Loading branch information
ericniebler committed May 3, 2022
2 parents 2751d58 + e92cfbb commit c7ad677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/meta/meta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3189,7 +3189,7 @@ namespace meta
void_<bool_<invoke<Fn, A>::type::value>>>
#endif
{
using type = if_<invoke<Fn, A>, pair<list<Yes..., A>, list<No...>>,
using type = if_<meta::invoke<Fn, A>, pair<list<Yes..., A>, list<No...>>,
pair<list<Yes...>, list<No..., A>>>;
};

Expand Down

0 comments on commit c7ad677

Please sign in to comment.