aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2019-03-21 12:07:10 +0000
committerJonathan Wakely <redi@gcc.gnu.org>2019-03-21 12:07:10 +0000
commit42d9f14babbbf96f2601e64117f235d47a683a55 (patch)
tree7423a94aea9b6dc063fdca9296a16bf340efd43d
parent6f5df5fdf8bfc44c65c332d299d6bc345a74ede4 (diff)
downloadgcc-42d9f14babbbf96f2601e64117f235d47a683a55.zip
gcc-42d9f14babbbf96f2601e64117f235d47a683a55.tar.gz
gcc-42d9f14babbbf96f2601e64117f235d47a683a55.tar.bz2
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
-rw-r--r--libstdc++-v3/ChangeLog12
-rw-r--r--libstdc++-v3/include/backward/hash_map2
-rw-r--r--libstdc++-v3/include/backward/hash_set2
-rw-r--r--libstdc++-v3/include/backward/strstream2
-rw-r--r--libstdc++-v3/include/tr1/bessel_function.tcc2
-rw-r--r--libstdc++-v3/include/tr1/exp_integral.tcc2
-rw-r--r--libstdc++-v3/include/tr1/legendre_function.tcc2
-rw-r--r--libstdc++-v3/include/tr1/modified_bessel_func.tcc2
-rw-r--r--libstdc++-v3/include/tr1/riemann_zeta.tcc2
9 files changed, 20 insertions, 8 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 59f6cf6..2daa699 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,15 @@
+2019-03-21 Jonathan Wakely <jwakely@redhat.com>
+
+ PR libstdc++/88066
+ * 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.
+
2019-03-19 Jonathan Wakely <jwakely@redhat.com>
* doc/xml/manual/allocator.xml: Link to table documenting evolution
diff --git a/libstdc++-v3/include/backward/hash_map b/libstdc++-v3/include/backward/hash_map
index 66a5218..e4fb32b 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 2dc0ed7..1445aa6 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 c3bc23a..f2e7436 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>
diff --git a/libstdc++-v3/include/tr1/bessel_function.tcc b/libstdc++-v3/include/tr1/bessel_function.tcc
index b51ff76..2e738f92 100644
--- a/libstdc++-v3/include/tr1/bessel_function.tcc
+++ b/libstdc++-v3/include/tr1/bessel_function.tcc
@@ -50,7 +50,7 @@
#ifndef _GLIBCXX_TR1_BESSEL_FUNCTION_TCC
#define _GLIBCXX_TR1_BESSEL_FUNCTION_TCC 1
-#include "special_function_util.h"
+#include <tr1/special_function_util.h>
namespace std _GLIBCXX_VISIBILITY(default)
{
diff --git a/libstdc++-v3/include/tr1/exp_integral.tcc b/libstdc++-v3/include/tr1/exp_integral.tcc
index b73e3d4..2463418 100644
--- a/libstdc++-v3/include/tr1/exp_integral.tcc
+++ b/libstdc++-v3/include/tr1/exp_integral.tcc
@@ -45,7 +45,7 @@
#ifndef _GLIBCXX_TR1_EXP_INTEGRAL_TCC
#define _GLIBCXX_TR1_EXP_INTEGRAL_TCC 1
-#include "special_function_util.h"
+#include <tr1/special_function_util.h>
namespace std _GLIBCXX_VISIBILITY(default)
{
diff --git a/libstdc++-v3/include/tr1/legendre_function.tcc b/libstdc++-v3/include/tr1/legendre_function.tcc
index f782907..c5b49d8 100644
--- a/libstdc++-v3/include/tr1/legendre_function.tcc
+++ b/libstdc++-v3/include/tr1/legendre_function.tcc
@@ -44,7 +44,7 @@
#ifndef _GLIBCXX_TR1_LEGENDRE_FUNCTION_TCC
#define _GLIBCXX_TR1_LEGENDRE_FUNCTION_TCC 1
-#include "special_function_util.h"
+#include <tr1/special_function_util.h>
namespace std _GLIBCXX_VISIBILITY(default)
{
diff --git a/libstdc++-v3/include/tr1/modified_bessel_func.tcc b/libstdc++-v3/include/tr1/modified_bessel_func.tcc
index ee213bf..12b1f5c 100644
--- a/libstdc++-v3/include/tr1/modified_bessel_func.tcc
+++ b/libstdc++-v3/include/tr1/modified_bessel_func.tcc
@@ -46,7 +46,7 @@
#ifndef _GLIBCXX_TR1_MODIFIED_BESSEL_FUNC_TCC
#define _GLIBCXX_TR1_MODIFIED_BESSEL_FUNC_TCC 1
-#include "special_function_util.h"
+#include <tr1/special_function_util.h>
namespace std _GLIBCXX_VISIBILITY(default)
{
diff --git a/libstdc++-v3/include/tr1/riemann_zeta.tcc b/libstdc++-v3/include/tr1/riemann_zeta.tcc
index f573e99..4e01b8b 100644
--- a/libstdc++-v3/include/tr1/riemann_zeta.tcc
+++ b/libstdc++-v3/include/tr1/riemann_zeta.tcc
@@ -42,7 +42,7 @@
#ifndef _GLIBCXX_TR1_RIEMANN_ZETA_TCC
#define _GLIBCXX_TR1_RIEMANN_ZETA_TCC 1
-#include "special_function_util.h"
+#include <tr1/special_function_util.h>
namespace std _GLIBCXX_VISIBILITY(default)
{