cxx/test/containers/sequences/vector.bool/shrink_to_fit.pass.cpp
2010-05-11 21:36:01 +00:00

28 lines
617 B
C++

//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <vector>
// vector<bool>
// void shrink_to_fit();
#include <vector>
#include <cassert>
int main()
{
{
std::vector<bool> v(100);
v.push_back(1);
v.shrink_to_fit();
assert(v.capacity() >= 101);
assert(v.size() >= 101);
}
}