diff options
| author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-19 14:54:40 +0000 |
|---|---|---|
| committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-19 14:54:40 +0000 |
| commit | 7a0fec36b5820f0913cc40edc1e311b754ce9316 (patch) | |
| tree | daaf3b0c58f22c2fc4d29f1c0892fb1c1af1a7df /libstdc++-v3/include/backward | |
| parent | a26d328133ffd595a75aaec712706fec7066d389 (diff) | |
| download | ppe42-gcc-7a0fec36b5820f0913cc40edc1e311b754ce9316.tar.gz ppe42-gcc-7a0fec36b5820f0913cc40edc1e311b754ce9316.zip | |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79685 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/backward')
| -rw-r--r-- | libstdc++-v3/include/backward/bvector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/backward/bvector.h b/libstdc++-v3/include/backward/bvector.h index e54dbc88c5a..92457926788 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 */ |

