diff options
-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 |