diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2024-04-25 13:04:43 +0100 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2024-04-25 18:38:43 +0100 |
commit | f3021e6e0600bedd69567b21d2a06b0b9854c533 (patch) | |
tree | 9995787bf564ae38b35e87863ab7120d0a161b13 | |
parent | d0e1e1291b10372d71ad3d6cb66b333ea91097e7 (diff) | |
download | gcc-f3021e6e0600bedd69567b21d2a06b0b9854c533.zip gcc-f3021e6e0600bedd69567b21d2a06b0b9854c533.tar.gz gcc-f3021e6e0600bedd69567b21d2a06b0b9854c533.tar.bz2 |
libstdc++: Add comment to #include in <variant>
It's not obvious why <variant> needs <bits/parse_numbers.h> so add a
comment to it.
libstdc++-v3/ChangeLog:
* include/std/variant: Add comment to #include.
-rw-r--r-- | libstdc++-v3/include/std/variant | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/std/variant b/libstdc++-v3/include/std/variant index f79d95d..748e9ba 100644 --- a/libstdc++-v3/include/std/variant +++ b/libstdc++-v3/include/std/variant @@ -42,7 +42,7 @@ #include <bits/exception_defines.h> #include <bits/functional_hash.h> #include <bits/invoke.h> -#include <bits/parse_numbers.h> +#include <bits/parse_numbers.h> // _Select_int #include <bits/stl_iterator_base_funcs.h> #include <bits/stl_construct.h> #include <bits/utility.h> // in_place_index_t |