From f30e62b0ee05befd20863466d1fb55a34d15c228 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely <jwakely@redhat.com> Date: Wed, 26 Jul 2023 19:08:39 +0100 Subject: [PATCH] libstdc++: Require C++11 for 23_containers/vector/bool/110807.cc [PR110807] This new test uses uniform initialization syntax, so requires C++11 or later. libstdc++-v3/ChangeLog: PR libstdc++/110807 * testsuite/23_containers/vector/bool/110807.cc: Require c++11. --- libstdc++-v3/testsuite/23_containers/vector/bool/110807.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/testsuite/23_containers/vector/bool/110807.cc b/libstdc++-v3/testsuite/23_containers/vector/bool/110807.cc index 5c019bd95246..2e9d4019edbe 100644 --- a/libstdc++-v3/testsuite/23_containers/vector/bool/110807.cc +++ b/libstdc++-v3/testsuite/23_containers/vector/bool/110807.cc @@ -1,5 +1,5 @@ // { dg-options "-O2" } -// { dg-do compile } +// { dg-do compile { target c++11 } } // Bug 110807 // Copy list initialisation of a vector<bool> raises a warning with -O2 -- GitLab