]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Remove redundant -std=gnu++17 option from containers tests
authorJonathan Wakely <jwakely@redhat.com>
Mon, 10 May 2021 15:22:53 +0000 (16:22 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Mon, 10 May 2021 15:22:53 +0000 (16:22 +0100)
GCC defaults to -std=gnu++17 now anyway, and using it explicitly in the
dg-options directive prevents running these tests with different modes
such as -std=c++17 or -std=gnu++20.

libstdc++-v3/ChangeLog:

* testsuite/23_containers/array/cons/deduction.cc: Remove
-std=gnu++17 from dg-options directive.
* testsuite/23_containers/array/cons/deduction_neg.cc: Likewise.
* testsuite/23_containers/array/element_access/constexpr_c++17.cc:
Likewise.
* testsuite/23_containers/array/requirements/constexpr_iter.cc:
Likewise.
* testsuite/23_containers/array/specialized_algorithms/swap_cxx17.cc:
Likewise.
* testsuite/23_containers/deque/cons/deduction.cc: Likewise.
* testsuite/23_containers/deque/modifiers/emplace/cxx17_return.cc:
Likewise.
* testsuite/23_containers/forward_list/cons/deduction.cc:
Likewise.
* testsuite/23_containers/forward_list/modifiers/emplace_cxx17_return.cc:
Likewise.
* testsuite/23_containers/list/cons/deduction.cc: Likewise.
* testsuite/23_containers/list/modifiers/emplace/cxx17_return.cc:
Likewise.
* testsuite/23_containers/map/cons/deduction.cc: Likewise.
* testsuite/23_containers/map/modifiers/extract.cc: Likewise.
* testsuite/23_containers/map/modifiers/insert/83226.cc:
Likewise.
* testsuite/23_containers/map/modifiers/insert_or_assign/1.cc:
Likewise.
* testsuite/23_containers/map/modifiers/merge.cc: Likewise.
* testsuite/23_containers/map/modifiers/try_emplace/1.cc:
Likewise.
* testsuite/23_containers/multimap/cons/deduction.cc: Likewise.
* testsuite/23_containers/multimap/modifiers/extract.cc:
Likewise.
* testsuite/23_containers/multimap/modifiers/merge.cc: Likewise.
* testsuite/23_containers/multiset/cons/deduction.cc: Likewise.
* testsuite/23_containers/multiset/modifiers/extract.cc:
Likewise.
* testsuite/23_containers/multiset/modifiers/merge.cc: Likewise.
* testsuite/23_containers/priority_queue/deduction.cc: Likewise.
* testsuite/23_containers/queue/deduction.cc: Likewise.
* testsuite/23_containers/queue/members/emplace_cxx17_return.cc:
Likewise.
* testsuite/23_containers/set/cons/deduction.cc: Likewise.
* testsuite/23_containers/set/modifiers/extract.cc: Likewise.
* testsuite/23_containers/set/modifiers/merge.cc: Likewise.
* testsuite/23_containers/set/modifiers/node_swap.cc: Likewise.
* testsuite/23_containers/stack/deduction.cc: Likewise.
* testsuite/23_containers/stack/members/emplace_cxx17_return.cc:
Likewise.
* testsuite/23_containers/unordered_map/cons/deduction.cc:
Likewise.
* testsuite/23_containers/unordered_map/modifiers/extract.cc:
Likewise.
* testsuite/23_containers/unordered_map/modifiers/insert_or_assign.cc:
Likewise.
* testsuite/23_containers/unordered_map/modifiers/merge.cc:
Likewise.
* testsuite/23_containers/unordered_map/modifiers/try_emplace.cc:
Likewise.
* testsuite/23_containers/unordered_multimap/cons/deduction.cc:
Likewise.
* testsuite/23_containers/unordered_multimap/modifiers/extract.cc:
Likewise.
* testsuite/23_containers/unordered_multimap/modifiers/merge.cc:
Likewise.
* testsuite/23_containers/unordered_multiset/cons/deduction.cc:
Likewise.
* testsuite/23_containers/unordered_multiset/modifiers/extract.cc:
Likewise.
* testsuite/23_containers/unordered_multiset/modifiers/merge.cc:
Likewise.
* testsuite/23_containers/unordered_set/cons/deduction.cc:
Likewise.
* testsuite/23_containers/unordered_set/modifiers/extract.cc:
Likewise.
* testsuite/23_containers/unordered_set/modifiers/merge.cc:
Likewise.
* testsuite/23_containers/vector/bool/emplace_cxx17_return.cc:
Likewise.
* testsuite/23_containers/vector/cons/89164_c++17.cc: Likewise.
* testsuite/23_containers/vector/cons/deduction.cc: Likewise.
* testsuite/23_containers/vector/modifiers/emplace/cxx17_return.cc:
Likewise.

50 files changed:
libstdc++-v3/testsuite/23_containers/array/cons/deduction.cc
libstdc++-v3/testsuite/23_containers/array/cons/deduction_neg.cc
libstdc++-v3/testsuite/23_containers/array/element_access/constexpr_c++17.cc
libstdc++-v3/testsuite/23_containers/array/requirements/constexpr_iter.cc
libstdc++-v3/testsuite/23_containers/array/specialized_algorithms/swap_cxx17.cc
libstdc++-v3/testsuite/23_containers/deque/cons/deduction.cc
libstdc++-v3/testsuite/23_containers/deque/modifiers/emplace/cxx17_return.cc
libstdc++-v3/testsuite/23_containers/forward_list/cons/deduction.cc
libstdc++-v3/testsuite/23_containers/forward_list/modifiers/emplace_cxx17_return.cc
libstdc++-v3/testsuite/23_containers/list/cons/deduction.cc
libstdc++-v3/testsuite/23_containers/list/modifiers/emplace/cxx17_return.cc
libstdc++-v3/testsuite/23_containers/map/cons/deduction.cc
libstdc++-v3/testsuite/23_containers/map/modifiers/extract.cc
libstdc++-v3/testsuite/23_containers/map/modifiers/insert/83226.cc
libstdc++-v3/testsuite/23_containers/map/modifiers/insert_or_assign/1.cc
libstdc++-v3/testsuite/23_containers/map/modifiers/merge.cc
libstdc++-v3/testsuite/23_containers/map/modifiers/try_emplace/1.cc
libstdc++-v3/testsuite/23_containers/multimap/cons/deduction.cc
libstdc++-v3/testsuite/23_containers/multimap/modifiers/extract.cc
libstdc++-v3/testsuite/23_containers/multimap/modifiers/merge.cc
libstdc++-v3/testsuite/23_containers/multiset/cons/deduction.cc
libstdc++-v3/testsuite/23_containers/multiset/modifiers/extract.cc
libstdc++-v3/testsuite/23_containers/multiset/modifiers/merge.cc
libstdc++-v3/testsuite/23_containers/priority_queue/deduction.cc
libstdc++-v3/testsuite/23_containers/queue/deduction.cc
libstdc++-v3/testsuite/23_containers/queue/members/emplace_cxx17_return.cc
libstdc++-v3/testsuite/23_containers/set/cons/deduction.cc
libstdc++-v3/testsuite/23_containers/set/modifiers/extract.cc
libstdc++-v3/testsuite/23_containers/set/modifiers/merge.cc
libstdc++-v3/testsuite/23_containers/set/modifiers/node_swap.cc
libstdc++-v3/testsuite/23_containers/stack/deduction.cc
libstdc++-v3/testsuite/23_containers/stack/members/emplace_cxx17_return.cc
libstdc++-v3/testsuite/23_containers/unordered_map/cons/deduction.cc
libstdc++-v3/testsuite/23_containers/unordered_map/modifiers/extract.cc
libstdc++-v3/testsuite/23_containers/unordered_map/modifiers/insert_or_assign.cc
libstdc++-v3/testsuite/23_containers/unordered_map/modifiers/merge.cc
libstdc++-v3/testsuite/23_containers/unordered_map/modifiers/try_emplace.cc
libstdc++-v3/testsuite/23_containers/unordered_multimap/cons/deduction.cc
libstdc++-v3/testsuite/23_containers/unordered_multimap/modifiers/extract.cc
libstdc++-v3/testsuite/23_containers/unordered_multimap/modifiers/merge.cc
libstdc++-v3/testsuite/23_containers/unordered_multiset/cons/deduction.cc
libstdc++-v3/testsuite/23_containers/unordered_multiset/modifiers/extract.cc
libstdc++-v3/testsuite/23_containers/unordered_multiset/modifiers/merge.cc
libstdc++-v3/testsuite/23_containers/unordered_set/cons/deduction.cc
libstdc++-v3/testsuite/23_containers/unordered_set/modifiers/extract.cc
libstdc++-v3/testsuite/23_containers/unordered_set/modifiers/merge.cc
libstdc++-v3/testsuite/23_containers/vector/bool/emplace_cxx17_return.cc
libstdc++-v3/testsuite/23_containers/vector/cons/89164_c++17.cc
libstdc++-v3/testsuite/23_containers/vector/cons/deduction.cc
libstdc++-v3/testsuite/23_containers/vector/modifiers/emplace/cxx17_return.cc

index 5697e3e0fddd75bd34a733ee2ef1d90cb58b1ee7..00fe19281438bec46726712f13d7bc4a99d27933 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <array>
index c85ffe5324f78636c246b44afdfc7b96e551ab27..f4471a2d33767c7391ba912ab7e719a75fb306d6 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <array>
@@ -26,6 +25,6 @@ test01()
   std::array a1{}; // { dg-error "class template argument deduction failed" }
   std::array a2{1, 2u, 3}; // { dg-error "class template argument deduction failed" }
 }
+// { dg-error "no matching function for call" "" { target *-*-* } 25 }
 // { dg-error "no matching function for call" "" { target *-*-* } 26 }
-// { dg-error "no matching function for call" "" { target *-*-* } 27 }
 // { dg-error "no type named .*enable_if" "" { target *-*-* } 0 }
index 37dd539f4c4c232639d697d7055ab06ee5e1b9e2..1b1c41b92b0402dda357419dbf533cb89b82da2f 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 // Copyright (C) 2011-2021 Free Software Foundation, Inc.
index 584019889287c486ada7da5d3e2ff7cead35f73f..f1662cd28f7097e3753ca65be5ae9d278fed2b35 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 //
 // Copyright (C) 2019-2021 Free Software Foundation, Inc.
index 9129a1c180780b281551449eadce385835b9ce08..f10d9f01e17e8b9d8b71b2854bad3bc0a3246396 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 // Copyright (C) 2016-2021 Free Software Foundation, Inc.
index 8fd3b051696ededfa0f26985fda65bc2cc8c4a15..8a38351e524217841583e309fbf3aa37fae3cf1b 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <deque>
index 5987d7b055ed4d4efdc760fa40fb411b96787899..659b84a2ccf725fd415bf3a31409968c91d0a2c0 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <deque>
index 59fe68c9f13a955e9cd06737565119531c12a185..eb39682f483be6b8cc4895575b2fbeed5b7d2fb1 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <forward_list>
index f8e2b3675a71f9bc45d79f0edc021484647bc16f..fdea5ee9c866e092e280da7cef635ce6cc8666ff 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <forward_list>
index 72c38f50cff20a6c355d1ccdc2e3c23d78462b96..3ad1d3f6cb55caa998a8c593ace239e29408e8b8 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <list>
index 19a1a176da2433fd848be7ae6e2973cc75882a28..e8418b0e52c9573561a8cf4e2841e38bd124d85e 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <list>
index a42d8d6b8810bcf85549b138befe2834c7ef28ae..e9628c4ac32b5ed0a82b4ab1dbef676354beed3f 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <map>
index 541496211a7583baef2318ccec731b690a0070ba..e078d53e1651f6b98f0a5acd27dd1e708b7ec868 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <map>
index aa0f089ae2838c67a38a2cc567b704634add255c..97b526b995d97be1e954f5e0f490b8ddf5f6988b 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <map>
index 52618d9ecfb3e05c97ea59d609b1b2c700565a47..5056a2e5316f9133828bb6adc625cbf5e5957d5a 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 // Copyright (C) 2015-2021 Free Software Foundation, Inc.
index 326104e1283d853f5e1204cd3622d1ea7154558d..4674f9e1ca56a9f93ad31fea33a7046ab4ccffbf 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <map>
index 137f4635f13193d36340069e062cfe0172d5607d..ef92254305b2a73314209d33143203089730d80e 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 // Copyright (C) 2015-2021 Free Software Foundation, Inc.
index 2f9373a5befd092a076a814484dc6ce3538a0258..791cc963479894770c86153eadc1aca89705e2ac 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <map>
index c365e788b8eef1e4233ba13dc5d286edb951bbfd..4fe53b6134ee35dc62bc171e58a3ea6a69e59004 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <map>
index 9c8b1b64cd67f8428b6ad365aa815b7fcd7e9b49..ec0ca500b3b655d3595b969ec55025399ca3ef5f 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <map>
index 6fe2704da179d5eea5f1db297ee06b46adac11c0..ad12755ccc69eaca4aff42f95f0e82b67dba8ce9 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <set>
index f508fb323c10e28cf9ef9433aef2ffdd0bf4f000..012f58c05329bf73829ccfcd40164064e4a2a314 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <set>
index d70c9990aa8f8a4e8484921e86b8c27413873f7f..50464d534ddd42ad5dec325da7b91a928cba9066 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <set>
index b18a2ebb609c1755e9c6b73225652f4f414e9470..05c4c570ad568b19b2ca2c9c93a35ab2a6c39b78 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <queue>
index 7b3a0e0d48e4855362dce037d63ed0202c062ce3..ab28f83aa2bec452f51cab33ed76625d3197b8ca 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <queue>
index 1be450a36b7b3724d4335572d597e6e3e89d6e46..8851e64ed609f6c85109527cd6d69647a905828c 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <queue>
index df89fa28dd008f0d1ad5d6f423ae7e492c2c6176..89a2c43b9376d6b0d77c270809b59418e64e7870 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <set>
index 713502e0bfdc99aa5db23689c96876120d64ecac..8ef539042f3e8735b7b0ee6a1b7ae3eea533f7fc 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <set>
index 60313d4752ae45cf104edd2011300a21d439c73e..d5a81a1dfc781f2812aca97308eee6b633db06de 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <set>
index 1fdfc5b0de31515720bd9ebf50d28ccb2ec2cb79..baf5f018455211077b2e638980c08a46f6cd2230 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <set>
index d746fb0986d4ed3c4437169188a31e31eacab492..db8e31e2bdaae2e719c93b71b3d2b69eb81a3de9 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <stack>
index 6a07fd636b39bc977e2b5dc8c416f26eff586a4b..cb053ed742854b9babc4cac813438c9cfcddcf33 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <stack>
index 979a56c9497663465bff16cddc7c497508e00eb6..d8489b23f8a0c603f20bd13194311f08f945ab58 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <unordered_map>
index a52e6d969bd23dbbde1007f446d7dad6a17a7c12..41b1f025b85308047a01237aeb0c67c5a9051f54 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <unordered_map>
index 1d1af9cd2db81a3c6ce0b69f8735a2f5ed7e98cc..13e0c0b96b3827bcfc82af9f35aa143f06490605 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 // Copyright (C) 2015-2021 Free Software Foundation, Inc.
index a51f175b42238a2f62fa51f625ec9e9f2d000553..9ea4865310a1bdad085cd75d48c75c825c5d462d 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <unordered_map>
index eb72ad2a1ba65ec1211e8bdf2eb036cdabb09a7f..f8211654682a881d3789f889f0318a9b0bc12fe4 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 // Copyright (C) 2015-2021 Free Software Foundation, Inc.
index 72b2d07149aa077aeed43842d023b73d023a3cb2..13f54d43451063cdb353adcf9b63ce0108d2d4d6 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <unordered_map>
index 93771a69084e4691f1ffd75be708002293898cd5..408df682a9be01f41b74b8582e7a638ef41155c0 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <unordered_map>
index d98140d0c31eff5333b74c2bd4a7f6515dc6dcb9..dc4423ac5c1ef39eecfb6ab9c3ae7586d140af78 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <unordered_map>
index fa895d7ff54900ea42baf0e791e66b7154a8c6f6..1850237e44c158614891e14694f6b178c0a9a87d 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <unordered_set>
index 2e1071d095cef73c3d3b8a5182d0718b85e4ed52..4ac843af2c0ec7efa93a78a7311db58bbf708ce1 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <unordered_set>
index 7765f3ed4cbc35a41dc0f22f816634ac6ccee7cd..1ed2ce234a19cb93ec23454275f5388dc5ab50ae 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <unordered_set>
index 61f21d2b1f42f0e17e78603afb8b1e4f3e3af99d..a745dce0fbae17b542bd0bb83d142691dc5c769b 100644 (file)
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <unordered_set>
index ca5f4ec165310191824ae243c839e5656d483dcf..817b2a14b39ca98270b2646f3739dc12f417ce52 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <unordered_set>
index 7cc2ce11cee044f01513985fe567cf7fad83735c..c9c8a60fd54001b5a9d1c0172a92a9df5531c026 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <unordered_set>
index b3668824576ef7f0cc1cdd7aa466b68ea2e93fe3..393adffb8f305c1ab7d549af6492ea181efa1ab9 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <vector>
index 76f1378f89b2bf02ab0333186d76a0af17c39199..78aadc4798b3f88e30eb41e214115e2ca3a5d357 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <vector>
index 7e6775b67f803a18a783fcb0ef321fee9a98bc68..9f7b7612c93c42cdbcad0c790d9201292002d6c7 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do compile { target c++17 } }
 
 #include <vector>
index 0f425248d90fa8861a46b6b3b0f20f9a23fe9af3..28aa00f5b8d2a81ed38cc3f95877cf945bce3768 100644 (file)
@@ -15,7 +15,6 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=gnu++17" }
 // { dg-do run { target c++17 } }
 
 #include <vector>