Skip to content

Commit

Permalink
fix: Add another compat fix for clang+libstdc++ (#1269)
Browse files Browse the repository at this point in the history
This fixes an issue in compiling using clang + libstdc++ after #1232 was merged.
  • Loading branch information
paulgessinger authored Jun 14, 2022
1 parent 93c608d commit 4a21df3
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ struct is_constructible<std::reference_wrapper<const std::any>,
const std::reference_wrapper<const std::any>&>
: public true_type {};
template <>
struct is_constructible<std::reference_wrapper<const std::any>,
std::reference_wrapper<const std::any>&&>
: public true_type {};
template <>
struct is_constructible<std::reference_wrapper<const std::any>,
std::reference_wrapper<const std::any>&>
: public true_type {};
Expand Down

0 comments on commit 4a21df3

Please sign in to comment.