Remove some debugging printout lines. No functionality change.

llvm-svn: 236949
This commit is contained in:
Marshall Clow 2015-05-10 13:26:57 +00:00
parent 783b372a58
commit cd26846fc5
1 changed files with 0 additions and 2 deletions

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));