f5256e16df
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@103516 91177308-0d34-0410-b5e6-96231b3b80d8
28 lines
617 B
C++
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);
|
|
}
|
|
}
|