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 c0b1ab3 commit 03edc1aCopy full SHA for 03edc1a
include/tao/pq/internal/aggregate.hpp
@@ -8,7 +8,7 @@
8
#include <tuple>
9
#include <type_traits>
10
11
-#if !( ( __cpp_structured_bindings >= 202302L ) && ( __cplusplus >= 202302L ) )
+#if !( ( __cpp_structured_bindings >= 202400L ) && ( __cplusplus >= 202400L ) )
12
#include <cstddef>
13
#include <utility>
14
#endif
@@ -18,7 +18,7 @@ namespace tao::pq::internal
18
19
// clang-format off
20
21
-#if ( __cpp_structured_bindings >= 202302L ) && ( __cplusplus >= 202302L )
+#if ( __cpp_structured_bindings >= 202400L ) && ( __cplusplus >= 202400L )
22
23
template< typename T >
24
requires( std::is_aggregate_v< T > && !std::is_empty_v< T > && !std::is_union_v< T > )
0 commit comments