diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2003-11-12 07:12:20 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2003-11-12 07:12:20 +0000 |
commit | f9d52373f85b16816d9068bd855df229f4be8d4b (patch) | |
tree | b5f3ab402ecd9971734c9a5586f6fd986ab47012 | |
parent | 0cf356dfa6fc3263e865a7a2a9f870c9ef96c525 (diff) | |
download | gcc-f9d52373f85b16816d9068bd855df229f4be8d4b.zip gcc-f9d52373f85b16816d9068bd855df229f4be8d4b.tar.gz gcc-f9d52373f85b16816d9068bd855df229f4be8d4b.tar.bz2 |
c++config: Move using directive...
2003-11-12 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/c++config: Move using directive...
* include/debug/formatter.h: ...here.
From-SVN: r73486
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/c++config | 1 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/formatter.h | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 985729d..c833d7b 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2003-11-12 Benjamin Kosnik <bkoz@redhat.com> + + * include/bits/c++config: Move using directive... + * include/debug/formatter.h: ...here. + 2003-11-12 Carlo Wood <carlo@alinoe.com> PR libstdc++/12947 diff --git a/libstdc++-v3/include/bits/c++config b/libstdc++-v3/include/bits/c++config index 21bc455..553ad97 100644 --- a/libstdc++-v3/include/bits/c++config +++ b/libstdc++-v3/include/bits/c++config @@ -61,7 +61,6 @@ namespace __gnu_debug_def { } namespace __gnu_debug { - using namespace std; using namespace __gnu_debug_def __attribute__ ((strong)); } diff --git a/libstdc++-v3/include/debug/formatter.h b/libstdc++-v3/include/debug/formatter.h index 317ce21..b73d223 100644 --- a/libstdc++-v3/include/debug/formatter.h +++ b/libstdc++-v3/include/debug/formatter.h @@ -36,6 +36,8 @@ namespace __gnu_debug { + using namespace std; + /** Determine if the two types are the same. */ template<typename _Type1, typename _Type2> struct __is_same |