Index: test/std/containers/sequences/vector.bool/assign_copy.pass.cpp =================================================================== --- test/std/containers/sequences/vector.bool/assign_copy.pass.cpp +++ test/std/containers/sequences/vector.bool/assign_copy.pass.cpp @@ -19,14 +19,14 @@ int main() { { - std::vector > l(3, 2, test_allocator(5)); + std::vector > l(3, true, test_allocator(5)); std::vector > l2(l, test_allocator(3)); l2 = l; assert(l2 == l); assert(l2.get_allocator() == test_allocator(3)); } { - std::vector > l(3, 2, other_allocator(5)); + std::vector > l(3, true, other_allocator(5)); std::vector > l2(l, other_allocator(3)); l2 = l; assert(l2 == l); @@ -34,7 +34,7 @@ } #if __cplusplus >= 201103L { - std::vector > l(3, 2, min_allocator()); + std::vector > l(3, true, min_allocator()); std::vector > l2(l, min_allocator()); l2 = l; assert(l2 == l); Index: test/std/containers/sequences/vector.bool/construct_size_value.pass.cpp =================================================================== --- test/std/containers/sequences/vector.bool/construct_size_value.pass.cpp +++ test/std/containers/sequences/vector.bool/construct_size_value.pass.cpp @@ -31,8 +31,8 @@ int main() { - test >(50, 3); + test >(50, true); #if TEST_STD_VER >= 11 - test> >(50, 3); + test> >(50, true); #endif } Index: test/std/containers/sequences/vector.bool/construct_size_value_alloc.pass.cpp =================================================================== --- test/std/containers/sequences/vector.bool/construct_size_value_alloc.pass.cpp +++ test/std/containers/sequences/vector.bool/construct_size_value_alloc.pass.cpp @@ -33,8 +33,8 @@ int main() { - test >(50, 3, std::allocator()); + test >(50, true, std::allocator()); #if TEST_STD_VER >= 11 - test> >(50, 3, min_allocator()); + test> >(50, true, min_allocator()); #endif } Index: test/std/containers/sequences/vector.bool/copy.pass.cpp =================================================================== --- test/std/containers/sequences/vector.bool/copy.pass.cpp +++ test/std/containers/sequences/vector.bool/copy.pass.cpp @@ -38,14 +38,14 @@ test(std::vector(a, an)); } { - std::vector > v(3, 2, test_allocator(5)); + std::vector > v(3, true, test_allocator(5)); std::vector > v2 = v; assert(v2 == v); assert(v2.get_allocator() == v.get_allocator()); } #if TEST_STD_VER >= 11 { - std::vector > v(3, 2, other_allocator(5)); + std::vector > v(3, true, other_allocator(5)); std::vector > v2 = v; assert(v2 == v); assert(v2.get_allocator() == other_allocator(-2)); @@ -56,7 +56,7 @@ test(std::vector>(a, an)); } { - std::vector > v(3, 2, min_allocator()); + std::vector > v(3, true, min_allocator()); std::vector > v2 = v; assert(v2 == v); assert(v2.get_allocator() == v.get_allocator()); Index: test/std/containers/sequences/vector.bool/copy_alloc.pass.cpp =================================================================== --- test/std/containers/sequences/vector.bool/copy_alloc.pass.cpp +++ test/std/containers/sequences/vector.bool/copy_alloc.pass.cpp @@ -32,30 +32,30 @@ int main() { { - int a[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 8, 7, 6, 5, 4, 3, 1, 0}; - int* an = a + sizeof(a)/sizeof(a[0]); + bool a[] = {0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0}; + bool* an = a + sizeof(a)/sizeof(a[0]); test(std::vector(a, an), std::allocator()); } { - std::vector > l(3, 2, test_allocator(5)); + std::vector > l(3, true, test_allocator(5)); std::vector > l2(l, test_allocator(3)); assert(l2 == l); assert(l2.get_allocator() == test_allocator(3)); } { - std::vector > l(3, 2, other_allocator(5)); + std::vector > l(3, true, other_allocator(5)); std::vector > l2(l, other_allocator(3)); assert(l2 == l); assert(l2.get_allocator() == other_allocator(3)); } #if TEST_STD_VER >= 11 { - int a[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 8, 7, 6, 5, 4, 3, 1, 0}; - int* an = a + sizeof(a)/sizeof(a[0]); + bool a[] = {0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0}; + bool* an = a + sizeof(a)/sizeof(a[0]); test(std::vector>(a, an), min_allocator()); } { - std::vector > l(3, 2, min_allocator()); + std::vector > l(3, true, min_allocator()); std::vector > l2(l, min_allocator()); assert(l2 == l); assert(l2.get_allocator() == min_allocator());