Commit 42d9f14b by Jonathan Wakely Committed by Jonathan Wakely

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
parent 6f5df5fd
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> 2019-03-19 Jonathan Wakely <jwakely@redhat.com>
* doc/xml/manual/allocator.xml: Link to table documenting evolution * doc/xml/manual/allocator.xml: Link to table documenting evolution
......
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
#define _BACKWARD_HASH_MAP 1 #define _BACKWARD_HASH_MAP 1
#ifndef _GLIBCXX_PERMIT_BACKWARD_HASH #ifndef _GLIBCXX_PERMIT_BACKWARD_HASH
#include "backward_warning.h" #include <backward/backward_warning.h>
#endif #endif
#include <bits/c++config.h> #include <bits/c++config.h>
......
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
#define _BACKWARD_HASH_SET 1 #define _BACKWARD_HASH_SET 1
#ifndef _GLIBCXX_PERMIT_BACKWARD_HASH #ifndef _GLIBCXX_PERMIT_BACKWARD_HASH
#include "backward_warning.h" #include <backward/backward_warning.h>
#endif #endif
#include <bits/c++config.h> #include <bits/c++config.h>
......
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
#ifndef _BACKWARD_STRSTREAM #ifndef _BACKWARD_STRSTREAM
#define _BACKWARD_STRSTREAM #define _BACKWARD_STRSTREAM
#include "backward_warning.h" #include <backward/backward_warning.h>
#include <iosfwd> #include <iosfwd>
#include <ios> #include <ios>
#include <istream> #include <istream>
......
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
#ifndef _GLIBCXX_TR1_BESSEL_FUNCTION_TCC #ifndef _GLIBCXX_TR1_BESSEL_FUNCTION_TCC
#define _GLIBCXX_TR1_BESSEL_FUNCTION_TCC 1 #define _GLIBCXX_TR1_BESSEL_FUNCTION_TCC 1
#include "special_function_util.h" #include <tr1/special_function_util.h>
namespace std _GLIBCXX_VISIBILITY(default) namespace std _GLIBCXX_VISIBILITY(default)
{ {
......
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
#ifndef _GLIBCXX_TR1_EXP_INTEGRAL_TCC #ifndef _GLIBCXX_TR1_EXP_INTEGRAL_TCC
#define _GLIBCXX_TR1_EXP_INTEGRAL_TCC 1 #define _GLIBCXX_TR1_EXP_INTEGRAL_TCC 1
#include "special_function_util.h" #include <tr1/special_function_util.h>
namespace std _GLIBCXX_VISIBILITY(default) namespace std _GLIBCXX_VISIBILITY(default)
{ {
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
#ifndef _GLIBCXX_TR1_LEGENDRE_FUNCTION_TCC #ifndef _GLIBCXX_TR1_LEGENDRE_FUNCTION_TCC
#define _GLIBCXX_TR1_LEGENDRE_FUNCTION_TCC 1 #define _GLIBCXX_TR1_LEGENDRE_FUNCTION_TCC 1
#include "special_function_util.h" #include <tr1/special_function_util.h>
namespace std _GLIBCXX_VISIBILITY(default) namespace std _GLIBCXX_VISIBILITY(default)
{ {
......
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
#ifndef _GLIBCXX_TR1_MODIFIED_BESSEL_FUNC_TCC #ifndef _GLIBCXX_TR1_MODIFIED_BESSEL_FUNC_TCC
#define _GLIBCXX_TR1_MODIFIED_BESSEL_FUNC_TCC 1 #define _GLIBCXX_TR1_MODIFIED_BESSEL_FUNC_TCC 1
#include "special_function_util.h" #include <tr1/special_function_util.h>
namespace std _GLIBCXX_VISIBILITY(default) namespace std _GLIBCXX_VISIBILITY(default)
{ {
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
#ifndef _GLIBCXX_TR1_RIEMANN_ZETA_TCC #ifndef _GLIBCXX_TR1_RIEMANN_ZETA_TCC
#define _GLIBCXX_TR1_RIEMANN_ZETA_TCC 1 #define _GLIBCXX_TR1_RIEMANN_ZETA_TCC 1
#include "special_function_util.h" #include <tr1/special_function_util.h>
namespace std _GLIBCXX_VISIBILITY(default) namespace std _GLIBCXX_VISIBILITY(default)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment