diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2002-02-16 19:33:43 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2002-02-16 19:33:43 +0000 |
commit | 3b79452813062052bbba3ece4f3636bc6f332b7d (patch) | |
tree | 5ffb691105d631184f0a1fc363635d642423e5c5 | |
parent | 7303604fed90505f3a4a8e5e80d42c8321ed5adc (diff) | |
download | gcc-3b79452813062052bbba3ece4f3636bc6f332b7d.zip gcc-3b79452813062052bbba3ece4f3636bc6f332b7d.tar.gz gcc-3b79452813062052bbba3ece4f3636bc6f332b7d.tar.bz2 |
locale_facets.tcc: Add pragma GCC system_header.
2002-02-16 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/locale_facets.tcc: Add pragma GCC system_header.
* include/bits/fstream.tcc: Same.
* include/bits/sstream.tcc: Same.
* include/bits/ostream.tcc: Same.
* include/bits/istream.tcc: Same.
* include/bits/streambuf.tcc: Same.
* include/bits/basic_ios.tcc: Same.
* include/bits/basic_string.tcc: Same.
From-SVN: r49809
-rw-r--r-- | libstdc++-v3/ChangeLog | 11 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/basic_ios.tcc | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/basic_string.tcc | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/fstream.tcc | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/istream.tcc | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/locale_facets.tcc | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/ostream.tcc | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/sstream.tcc | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/streambuf.tcc | 2 |
9 files changed, 27 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d52cefe..655d030 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,14 @@ +2002-02-16 Benjamin Kosnik <bkoz@redhat.com> + + * include/bits/locale_facets.tcc: Add pragma GCC system_header. + * include/bits/fstream.tcc: Same. + * include/bits/sstream.tcc: Same. + * include/bits/ostream.tcc: Same. + * include/bits/istream.tcc: Same. + * include/bits/streambuf.tcc: Same. + * include/bits/basic_ios.tcc: Same. + * include/bits/basic_string.tcc: Same. + 2002-02-15 Benjamin Kosnik <bkoz@redhat.com> * include/std/std_iosfwd.h: Don't guard typedefs with diff --git a/libstdc++-v3/include/bits/basic_ios.tcc b/libstdc++-v3/include/bits/basic_ios.tcc index 63b797c..4db4a82 100644 --- a/libstdc++-v3/include/bits/basic_ios.tcc +++ b/libstdc++-v3/include/bits/basic_ios.tcc @@ -30,6 +30,8 @@ #ifndef _CPP_BITS_BASICIOS_TCC #define _CPP_BITS_BASICIOS_TCC 1 +#pragma GCC system_header + namespace std { template<typename _CharT, typename _Traits> diff --git a/libstdc++-v3/include/bits/basic_string.tcc b/libstdc++-v3/include/bits/basic_string.tcc index dd5038f..dce9b38f 100644 --- a/libstdc++-v3/include/bits/basic_string.tcc +++ b/libstdc++-v3/include/bits/basic_string.tcc @@ -41,6 +41,8 @@ #ifndef _CPP_BITS_STRING_TCC #define _CPP_BITS_STRING_TCC 1 +#pragma GCC system_header + namespace std { template<typename _CharT, typename _Traits, typename _Alloc> diff --git a/libstdc++-v3/include/bits/fstream.tcc b/libstdc++-v3/include/bits/fstream.tcc index e6132d2..0d08826 100644 --- a/libstdc++-v3/include/bits/fstream.tcc +++ b/libstdc++-v3/include/bits/fstream.tcc @@ -35,6 +35,8 @@ #ifndef _CPP_BITS_FSTREAM_TCC #define _CPP_BITS_FSTREAM_TCC 1 +#pragma GCC system_header + namespace std { template<typename _CharT, typename _Traits> diff --git a/libstdc++-v3/include/bits/istream.tcc b/libstdc++-v3/include/bits/istream.tcc index 566db2e..4a32c65 100644 --- a/libstdc++-v3/include/bits/istream.tcc +++ b/libstdc++-v3/include/bits/istream.tcc @@ -32,6 +32,8 @@ // ISO C++ 14882: 27.6.2 Output streams // +#pragma GCC system_header + #include <locale> #include <ostream> // For flush() diff --git a/libstdc++-v3/include/bits/locale_facets.tcc b/libstdc++-v3/include/bits/locale_facets.tcc index efea572..9d275c1 100644 --- a/libstdc++-v3/include/bits/locale_facets.tcc +++ b/libstdc++-v3/include/bits/locale_facets.tcc @@ -33,6 +33,8 @@ #ifndef _CPP_BITS_LOCFACETS_TCC #define _CPP_BITS_LOCFACETS_TCC 1 +#pragma GCC system_header + #include <cerrno> #include <clocale> // For localeconv #include <cstdlib> // For strof, strtold diff --git a/libstdc++-v3/include/bits/ostream.tcc b/libstdc++-v3/include/bits/ostream.tcc index 3182ff3..91c1b12 100644 --- a/libstdc++-v3/include/bits/ostream.tcc +++ b/libstdc++-v3/include/bits/ostream.tcc @@ -32,6 +32,8 @@ // ISO C++ 14882: 27.6.2 Output streams // +#pragma GCC system_header + #include <locale> namespace std diff --git a/libstdc++-v3/include/bits/sstream.tcc b/libstdc++-v3/include/bits/sstream.tcc index 884c190..f83bb69 100644 --- a/libstdc++-v3/include/bits/sstream.tcc +++ b/libstdc++-v3/include/bits/sstream.tcc @@ -35,6 +35,8 @@ #ifndef _CPP_BITS_SSTREAM_TCC #define _CPP_BITS_SSTREAM_TCC 1 +#pragma GCC system_header + #include <sstream> namespace std diff --git a/libstdc++-v3/include/bits/streambuf.tcc b/libstdc++-v3/include/bits/streambuf.tcc index c4cec0f..dc79215 100644 --- a/libstdc++-v3/include/bits/streambuf.tcc +++ b/libstdc++-v3/include/bits/streambuf.tcc @@ -35,6 +35,8 @@ #ifndef _CPP_BITS_STREAMBUF_TCC #define _CPP_BITS_STREAMBUF_TCC 1 +#pragma GCC system_header + namespace std { template<typename _CharT, typename _Traits> |