Remove some debugging printout lines. No functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@236949 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow 2015-05-10 13:26:57 +00:00
parent dbaf7a0d31
commit 3607f8640d

View File

@ -24,9 +24,7 @@ bool is6(int x) { return x == 6; }
template <typename Vec>
void test ( Vec &v )
{
std::cout << "Size, cap: " << v.size() << " " << v.capacity() << std::endl;
v.assign(5, 6);
std::cout << "Size, cap: " << v.size() << " " << v.capacity() << std::endl;
assert(v.size() == 5);
assert(is_contiguous_container_asan_correct(v));
assert(std::all_of(v.begin(), v.end(), is6));