diff options
| -rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
| -rw-r--r-- | libstdc++-v3/include/backward/bvector.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 0314acd..ad55bd7 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2004-03-19 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> + + PR libstdc++/14647 + * include/backward/bvector.h (bit_vector): Allocator is in std + namespace. + 2004-03-19 Phil Edwards <phil@codesourcery.com> * acinclude.m4 (GLIBCXX_CHECK_WCHAR_T_SUPPORT): Set LIBICONV, diff --git a/libstdc++-v3/include/backward/bvector.h b/libstdc++-v3/include/backward/bvector.h index e54dbc8..9245792 100644 --- a/libstdc++-v3/include/backward/bvector.h +++ b/libstdc++-v3/include/backward/bvector.h @@ -59,7 +59,7 @@ #include "backward_warning.h" #include <vector> -typedef std::vector<bool, allocator<bool> > bit_vector; +typedef std::vector<bool, std::allocator<bool> > bit_vector; #endif /* _BACKWARD_BVECTOR_H */ |
