Skip to content

Commit 124140b

Browse files
committed
Add missing std to nullptr_t
1 parent fb12b8e commit 124140b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/cpp2util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1421,7 +1421,7 @@ constexpr auto is( X const& x ) -> bool {
14211421
}
14221422

14231423
template< std::same_as<empty> C, typename X >
1424-
requires std::same_as<X, nullptr_t> || std::same_as<X, std::monostate>
1424+
requires std::same_as<X, std::nullptr_t> || std::same_as<X, std::monostate>
14251425
constexpr auto is( X const& ) -> std::true_type {
14261426
return {};
14271427
}

0 commit comments

Comments
 (0)