Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/std/tests/P0083R3_splicing_maps_and_sets/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ void test_node_handle(NodeHandle& nh1, NodeHandle& nh2, Validator1 v1, Validator
static_assert(std::is_nothrow_default_constructible_v<NodeHandle>);
CHECK_EMPTY(NodeHandle{});
#if defined(__cpp_constinit)
#pragma warning(suppress : 4640) // C4640 emitted by MSVC because 'NodeHandle' type has non-trivial dtor
{ static constinit NodeHandle static_handle{}; }
#elif defined(__clang__)
{ [[clang::require_constant_initialization]] static NodeHandle static_handle{}; }
Expand Down