diff options
Diffstat (limited to 'test/std/containers/sequences/vector.bool/assign_copy.pass.cpp')
| -rw-r--r-- | test/std/containers/sequences/vector.bool/assign_copy.pass.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/test/std/containers/sequences/vector.bool/assign_copy.pass.cpp b/test/std/containers/sequences/vector.bool/assign_copy.pass.cpp index 9501799ae3d0b..54b7e84bb0920 100644 --- a/test/std/containers/sequences/vector.bool/assign_copy.pass.cpp +++ b/test/std/containers/sequences/vector.bool/assign_copy.pass.cpp @@ -19,22 +19,22 @@  int main()  {      { -        std::vector<bool, test_allocator<bool> > l(3, 2, test_allocator<bool>(5)); +        std::vector<bool, test_allocator<bool> > l(3, true, test_allocator<bool>(5));          std::vector<bool, test_allocator<bool> > l2(l, test_allocator<bool>(3));          l2 = l;          assert(l2 == l);          assert(l2.get_allocator() == test_allocator<bool>(3));      }      { -        std::vector<bool, other_allocator<bool> > l(3, 2, other_allocator<bool>(5)); +        std::vector<bool, other_allocator<bool> > l(3, true, other_allocator<bool>(5));          std::vector<bool, other_allocator<bool> > l2(l, other_allocator<bool>(3));          l2 = l;          assert(l2 == l);          assert(l2.get_allocator() == other_allocator<bool>(5));      } -#if __cplusplus >= 201103L +#if TEST_STD_VER >= 11      { -        std::vector<bool, min_allocator<bool> > l(3, 2, min_allocator<bool>()); +        std::vector<bool, min_allocator<bool> > l(3, true, min_allocator<bool>());          std::vector<bool, min_allocator<bool> > l2(l, min_allocator<bool>());          l2 = l;          assert(l2 == l);  | 
