diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-07 13:48:44 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-08 07:48:03 +0100 |
commit | b162c5d59ee1659ef741b136c651b9c62311adad (patch) | |
tree | f69d4d96221dbb17279254c839d4f009a9933554 /svtools | |
parent | 1e82579c589cbbbd547564f5db6ea4340c8f1468 (diff) |
std::bit_vector -> ::std::vector<bool, std::allocator<bool> >
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/bmpmaker/bmpcore.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/bmpmaker/bmpcore.cxx b/svtools/bmpmaker/bmpcore.cxx index 2a23cab8fa4a..a352ae4f7dc1 100644 --- a/svtools/bmpmaker/bmpcore.cxx +++ b/svtools/bmpmaker/bmpcore.cxx @@ -162,7 +162,7 @@ void BmpCreator::ImplCreate( const ::std::vector< DirEntry >& rInDirs, Message( aInfo ); // create bit vector to hold flags for valid bitmaps - ::std::bit_vector aValidBmpBitVector( aNameVector.size(), false ); + ::std::vector<bool, std::allocator<bool> > aValidBmpBitVector( aNameVector.size(), false ); BitmapEx aBmpEx; for( sal_uInt32 n = 0; n < aNameVector.size(); n++ ) |