diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2020-07-31 18:02:10 +0100 |
---|---|---|
committer | Giuliano Belinassi <giuliano.belinassi@usp.br> | 2020-08-17 13:20:27 -0300 |
commit | 6c3e453802011ebf8389741436b85eb1f489be0a (patch) | |
tree | 058fdf39b8b2d80daaeb65e7d9905d969591c76d | |
parent | b88adbbb21d19362aa69185518b8f49a5c19d950 (diff) | |
download | gcc-6c3e453802011ebf8389741436b85eb1f489be0a.zip gcc-6c3e453802011ebf8389741436b85eb1f489be0a.tar.gz gcc-6c3e453802011ebf8389741436b85eb1f489be0a.tar.bz2 |
libstdc++: Remove accidental -std=gnu++17 from test
This was probably copied from a std::filesystem test and the -std option
wasn't removed.
libstdc++-v3/ChangeLog:
* testsuite/experimental/filesystem/filesystem_error/cons.cc:
Remove -std=gnu++17 option.
-rw-r--r-- | libstdc++-v3/testsuite/experimental/filesystem/filesystem_error/cons.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/testsuite/experimental/filesystem/filesystem_error/cons.cc b/libstdc++-v3/testsuite/experimental/filesystem/filesystem_error/cons.cc index 19dcc2a..0c7420c 100644 --- a/libstdc++-v3/testsuite/experimental/filesystem/filesystem_error/cons.cc +++ b/libstdc++-v3/testsuite/experimental/filesystem/filesystem_error/cons.cc @@ -15,7 +15,7 @@ // with this library; see the file COPYING3. If not see // <http://www.gnu.org/licenses/>. -// { dg-options "-std=gnu++17 -lstdc++fs" } +// { dg-options "-lstdc++fs" } // { dg-do run { target c++11 } } // { dg-require-filesystem-ts "" } |