summaryrefslogtreecommitdiffstats
path: root/libcxx/test
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2015-05-10 13:26:57 +0000
committerMarshall Clow <mclow.lists@gmail.com>2015-05-10 13:26:57 +0000
commitcd26846fc54c18128f992b9ee7a9771410255f41 (patch)
treeb387b7873dad05f58faa4395daf1683c412d163a /libcxx/test
parent783b372a580c59bb3aae3b37f32df17b3a2b3928 (diff)
downloadbcm5719-llvm-cd26846fc54c18128f992b9ee7a9771410255f41.tar.gz
bcm5719-llvm-cd26846fc54c18128f992b9ee7a9771410255f41.zip
Remove some debugging printout lines. No functionality change.
llvm-svn: 236949
Diffstat (limited to 'libcxx/test')
-rw-r--r--libcxx/test/std/containers/sequences/vector/vector.cons/assign_size_value.pass.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/libcxx/test/std/containers/sequences/vector/vector.cons/assign_size_value.pass.cpp b/libcxx/test/std/containers/sequences/vector/vector.cons/assign_size_value.pass.cpp
index 51b16ecd0ba..e1b30bf1130 100644
--- a/libcxx/test/std/containers/sequences/vector/vector.cons/assign_size_value.pass.cpp
+++ b/libcxx/test/std/containers/sequences/vector/vector.cons/assign_size_value.pass.cpp
@@ -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));
OpenPOWER on IntegriCloud