]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR libstdc++/14647 (bit_vectors are broken (regression))
authorPeter Schmid <schmid@snake.iap.physik.tu-darmstadt.de>
Fri, 19 Mar 2004 14:54:40 +0000 (14:54 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Fri, 19 Mar 2004 14:54:40 +0000 (06:54 -0800)
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.

From-SVN: r79685

libstdc++-v3/ChangeLog
libstdc++-v3/include/backward/bvector.h

index 0314acd6c699873edf1c7c0d9ed518d07bf63eb1..ad55bd734a3b86be6e2ff33b6be990ebcdd31549 100644 (file)
@@ -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,
index e54dbc88c5a1f441613d00046250a86f3bb4e309..924579267883bd930ec2744ce55426d8df4797f7 100644 (file)
@@ -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 */