diff --git a/libstdc++-v3/doc/html/index.html b/libstdc++-v3/doc/html/index.html index d21efe58a58..b0c94da4ff7 100644 --- a/libstdc++-v3/doc/html/index.html +++ b/libstdc++-v3/doc/html/index.html @@ -1,6 +1,6 @@ -
Short Contents
- Copyright (C) 2008-2021 +
Short Contents
+ Copyright (C) 2008-2022 FSF
diff --git a/libstdc++-v3/doc/html/manual/using.html b/libstdc++-v3/doc/html/manual/using.html
index 140896b1f60..641a08c688b 100644
--- a/libstdc++-v3/doc/html/manual/using.html
+++ b/libstdc++-v3/doc/html/manual/using.html
@@ -11,7 +11,8 @@
The standard library conforms to the dialect of C++ specified by the
-std
option passed to the compiler.
By default, g++ is equivalent to
- g++ -std=gnu++14 since GCC 6, and
+ g++ -std=gnu++17 since GCC 11, and
+ g++ -std=gnu++14 in GCC 6, 7, 8, 9, and 10, and
g++ -std=gnu++98 for older releases.
Table 3.1. C++ Command Options
Option Flags | Description |
---|---|
-std=c++98 or -std=c++03
| Use the 1998 ISO C++ standard plus amendments. |
-std=gnu++98 or -std=gnu++03
diff --git a/libstdc++-v3/doc/xml/manual/using.xml b/libstdc++-v3/doc/xml/manual/using.xml
index 65fde4609db..36b86702d22 100644
--- a/libstdc++-v3/doc/xml/manual/using.xml
+++ b/libstdc++-v3/doc/xml/manual/using.xml
@@ -16,7 +16,8 @@
The standard library conforms to the dialect of C++ specified by the
option passed to the compiler.
By default, |