libstdc++: Fix typo in pragma

libstdc++-v3/ChangeLog:

	* testsuite/20_util/unsynchronized_pool_resource/allocate.cc:
	Fix typo.
This commit is contained in:
Jonathan Wakely 2022-02-14 10:05:47 +00:00
parent 8134156502
commit 220d85fdf0

View File

@ -287,7 +287,7 @@ test07()
// so that careful_resource::do_allocate can distinguish this allocation
// from any required for the pool resource's internal data structures):
void* p = upr.allocate(std::size_t(-2), 1024);
#pragma GCC distinguish pop
#pragma GCC diagnostic pop
// Should not reach here!
VERIFY( !"attempt to allocate SIZE_MAX-1 should not have succeeded" );
throw p;