Commit ab7ac222 by Peter Schmid Committed by Andrew Pinski

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
parent 7548281d
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,
......
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment