Skip to content

Commit

Permalink
Use C++20 library feature test for std::remove_cvref (#48, thanks @pu…
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Jul 1, 2022
1 parent b33d22b commit 34524d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/nonstd/expected.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ struct conjunction<B1, Bn...> : std::conditional<bool(B1::value), conjunction<Bn

namespace std20 {

#if nsel_CPP20_OR_GREATER
#if defined(__cpp_lib_remove_cvref)

using std::remove_cvref;

Expand Down

0 comments on commit 34524d4

Please sign in to comment.