diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2019-03-21 12:07:10 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2019-03-21 12:07:10 +0000 |
commit | 42d9f14babbbf96f2601e64117f235d47a683a55 (patch) | |
tree | 7423a94aea9b6dc063fdca9296a16bf340efd43d /libstdc++-v3/include/backward | |
parent | 6f5df5fdf8bfc44c65c332d299d6bc345a74ede4 (diff) | |
download | gcc-42d9f14babbbf96f2601e64117f235d47a683a55.tar.gz |
PR libstdc++/88066 Use <> for includes not ""
These headers were missed in the previous commit for this bug.
There are also several "" includes in the profile mode headers, but
because they're deprecated I'm not fixing them.
* include/backward/hash_map: Use <> for includes not "".
* include/backward/hash_set: Likewise.
* include/backward/strstream: Likewise.
* include/tr1/bessel_function.tcc: Likewise.
* include/tr1/exp_integral.tcc: Likewise.
* include/tr1/legendre_function.tcc: Likewise.
* include/tr1/modified_bessel_func.tcc: Likewise.
* include/tr1/riemann_zeta.tcc: Likewise.
From-SVN: r269835
Diffstat (limited to 'libstdc++-v3/include/backward')
-rw-r--r-- | libstdc++-v3/include/backward/hash_map | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/backward/hash_set | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/backward/strstream | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/include/backward/hash_map b/libstdc++-v3/include/backward/hash_map index 66a5218fc6f..e4fb32bd7ad 100644 --- a/libstdc++-v3/include/backward/hash_map +++ b/libstdc++-v3/include/backward/hash_map @@ -57,7 +57,7 @@ #define _BACKWARD_HASH_MAP 1 #ifndef _GLIBCXX_PERMIT_BACKWARD_HASH -#include "backward_warning.h" +#include <backward/backward_warning.h> #endif #include <bits/c++config.h> diff --git a/libstdc++-v3/include/backward/hash_set b/libstdc++-v3/include/backward/hash_set index 2dc0ed774fa..1445aa61e11 100644 --- a/libstdc++-v3/include/backward/hash_set +++ b/libstdc++-v3/include/backward/hash_set @@ -57,7 +57,7 @@ #define _BACKWARD_HASH_SET 1 #ifndef _GLIBCXX_PERMIT_BACKWARD_HASH -#include "backward_warning.h" +#include <backward/backward_warning.h> #endif #include <bits/c++config.h> diff --git a/libstdc++-v3/include/backward/strstream b/libstdc++-v3/include/backward/strstream index c3bc23a9cd1..f2e74362e2e 100644 --- a/libstdc++-v3/include/backward/strstream +++ b/libstdc++-v3/include/backward/strstream @@ -47,7 +47,7 @@ #ifndef _BACKWARD_STRSTREAM #define _BACKWARD_STRSTREAM -#include "backward_warning.h" +#include <backward/backward_warning.h> #include <iosfwd> #include <ios> #include <istream> |