re PR libstdc++/14647 (bit_vectors are broken (regression))

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
This commit is contained in:
Peter Schmid 2004-03-19 14:54:40 +00:00 committed by Andrew Pinski
parent 7548281d73
commit ab7ac2227a
2 changed files with 7 additions and 1 deletions

View 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,

View 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 */