diff --git a/libcxx/test/std/atomics/atomics.flag/atomic_flag_clear.pass.cpp b/libcxx/test/std/atomics/atomics.flag/atomic_flag_clear.pass.cpp --- a/libcxx/test/std/atomics/atomics.flag/atomic_flag_clear.pass.cpp +++ b/libcxx/test/std/atomics/atomics.flag/atomic_flag_clear.pass.cpp @@ -24,14 +24,14 @@ std::atomic_flag f; f.clear(); f.test_and_set(); - atomic_flag_clear(&f); + std::atomic_flag_clear(&f); assert(f.test_and_set() == 0); } { volatile std::atomic_flag f; f.clear(); f.test_and_set(); - atomic_flag_clear(&f); + std::atomic_flag_clear(&f); assert(f.test_and_set() == 0); } diff --git a/libcxx/test/std/atomics/atomics.flag/atomic_flag_clear_explicit.pass.cpp b/libcxx/test/std/atomics/atomics.flag/atomic_flag_clear_explicit.pass.cpp --- a/libcxx/test/std/atomics/atomics.flag/atomic_flag_clear_explicit.pass.cpp +++ b/libcxx/test/std/atomics/atomics.flag/atomic_flag_clear_explicit.pass.cpp @@ -22,44 +22,44 @@ { { std::atomic_flag f; // uninitialized first - atomic_flag_clear_explicit(&f, std::memory_order_relaxed); + std::atomic_flag_clear_explicit(&f, std::memory_order_relaxed); assert(f.test_and_set() == 0); - atomic_flag_clear_explicit(&f, std::memory_order_relaxed); + std::atomic_flag_clear_explicit(&f, std::memory_order_relaxed); assert(f.test_and_set() == 0); } { std::atomic_flag f; - atomic_flag_clear_explicit(&f, std::memory_order_release); + std::atomic_flag_clear_explicit(&f, std::memory_order_release); assert(f.test_and_set() == 0); - atomic_flag_clear_explicit(&f, std::memory_order_release); + std::atomic_flag_clear_explicit(&f, std::memory_order_release); assert(f.test_and_set() == 0); } { std::atomic_flag f; - atomic_flag_clear_explicit(&f, std::memory_order_seq_cst); + std::atomic_flag_clear_explicit(&f, std::memory_order_seq_cst); assert(f.test_and_set() == 0); - atomic_flag_clear_explicit(&f, std::memory_order_seq_cst); + std::atomic_flag_clear_explicit(&f, std::memory_order_seq_cst); assert(f.test_and_set() == 0); } { volatile std::atomic_flag f; - atomic_flag_clear_explicit(&f, std::memory_order_relaxed); + std::atomic_flag_clear_explicit(&f, std::memory_order_relaxed); assert(f.test_and_set() == 0); - atomic_flag_clear_explicit(&f, std::memory_order_relaxed); + std::atomic_flag_clear_explicit(&f, std::memory_order_relaxed); assert(f.test_and_set() == 0); } { volatile std::atomic_flag f; - atomic_flag_clear_explicit(&f, std::memory_order_release); + std::atomic_flag_clear_explicit(&f, std::memory_order_release); assert(f.test_and_set() == 0); - atomic_flag_clear_explicit(&f, std::memory_order_release); + std::atomic_flag_clear_explicit(&f, std::memory_order_release); assert(f.test_and_set() == 0); } { volatile std::atomic_flag f; - atomic_flag_clear_explicit(&f, std::memory_order_seq_cst); + std::atomic_flag_clear_explicit(&f, std::memory_order_seq_cst); assert(f.test_and_set() == 0); - atomic_flag_clear_explicit(&f, std::memory_order_seq_cst); + std::atomic_flag_clear_explicit(&f, std::memory_order_seq_cst); assert(f.test_and_set() == 0); } diff --git a/libcxx/test/std/atomics/atomics.flag/atomic_flag_test.pass.cpp b/libcxx/test/std/atomics/atomics.flag/atomic_flag_test.pass.cpp --- a/libcxx/test/std/atomics/atomics.flag/atomic_flag_test.pass.cpp +++ b/libcxx/test/std/atomics/atomics.flag/atomic_flag_test.pass.cpp @@ -23,16 +23,16 @@ { std::atomic_flag f; f.clear(); - assert(atomic_flag_test(&f) == 0); + assert(std::atomic_flag_test(&f) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test(&f) == 1); + assert(std::atomic_flag_test(&f) == 1); } { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test(&f) == 0); + assert(std::atomic_flag_test(&f) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test(&f) == 1); + assert(std::atomic_flag_test(&f) == 1); } return 0; diff --git a/libcxx/test/std/atomics/atomics.flag/atomic_flag_test_and_set.pass.cpp b/libcxx/test/std/atomics/atomics.flag/atomic_flag_test_and_set.pass.cpp --- a/libcxx/test/std/atomics/atomics.flag/atomic_flag_test_and_set.pass.cpp +++ b/libcxx/test/std/atomics/atomics.flag/atomic_flag_test_and_set.pass.cpp @@ -23,13 +23,13 @@ { std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set(&f) == 0); + assert(std::atomic_flag_test_and_set(&f) == 0); assert(f.test_and_set() == 1); } { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set(&f) == 0); + assert(std::atomic_flag_test_and_set(&f) == 0); assert(f.test_and_set() == 1); } diff --git a/libcxx/test/std/atomics/atomics.flag/atomic_flag_test_and_set_explicit.pass.cpp b/libcxx/test/std/atomics/atomics.flag/atomic_flag_test_and_set_explicit.pass.cpp --- a/libcxx/test/std/atomics/atomics.flag/atomic_flag_test_and_set_explicit.pass.cpp +++ b/libcxx/test/std/atomics/atomics.flag/atomic_flag_test_and_set_explicit.pass.cpp @@ -23,73 +23,73 @@ { std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set_explicit(&f, std::memory_order_relaxed) == 0); + assert(std::atomic_flag_test_and_set_explicit(&f, std::memory_order_relaxed) == 0); assert(f.test_and_set() == 1); } { std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set_explicit(&f, std::memory_order_consume) == 0); + assert(std::atomic_flag_test_and_set_explicit(&f, std::memory_order_consume) == 0); assert(f.test_and_set() == 1); } { std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set_explicit(&f, std::memory_order_acquire) == 0); + assert(std::atomic_flag_test_and_set_explicit(&f, std::memory_order_acquire) == 0); assert(f.test_and_set() == 1); } { std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set_explicit(&f, std::memory_order_release) == 0); + assert(std::atomic_flag_test_and_set_explicit(&f, std::memory_order_release) == 0); assert(f.test_and_set() == 1); } { std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set_explicit(&f, std::memory_order_acq_rel) == 0); + assert(std::atomic_flag_test_and_set_explicit(&f, std::memory_order_acq_rel) == 0); assert(f.test_and_set() == 1); } { std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set_explicit(&f, std::memory_order_seq_cst) == 0); + assert(std::atomic_flag_test_and_set_explicit(&f, std::memory_order_seq_cst) == 0); assert(f.test_and_set() == 1); } { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set_explicit(&f, std::memory_order_relaxed) == 0); + assert(std::atomic_flag_test_and_set_explicit(&f, std::memory_order_relaxed) == 0); assert(f.test_and_set() == 1); } { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set_explicit(&f, std::memory_order_consume) == 0); + assert(std::atomic_flag_test_and_set_explicit(&f, std::memory_order_consume) == 0); assert(f.test_and_set() == 1); } { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set_explicit(&f, std::memory_order_acquire) == 0); + assert(std::atomic_flag_test_and_set_explicit(&f, std::memory_order_acquire) == 0); assert(f.test_and_set() == 1); } { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set_explicit(&f, std::memory_order_release) == 0); + assert(std::atomic_flag_test_and_set_explicit(&f, std::memory_order_release) == 0); assert(f.test_and_set() == 1); } { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set_explicit(&f, std::memory_order_acq_rel) == 0); + assert(std::atomic_flag_test_and_set_explicit(&f, std::memory_order_acq_rel) == 0); assert(f.test_and_set() == 1); } { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test_and_set_explicit(&f, std::memory_order_seq_cst) == 0); + assert(std::atomic_flag_test_and_set_explicit(&f, std::memory_order_seq_cst) == 0); assert(f.test_and_set() == 1); } diff --git a/libcxx/test/std/atomics/atomics.flag/atomic_flag_test_explicit.pass.cpp b/libcxx/test/std/atomics/atomics.flag/atomic_flag_test_explicit.pass.cpp --- a/libcxx/test/std/atomics/atomics.flag/atomic_flag_test_explicit.pass.cpp +++ b/libcxx/test/std/atomics/atomics.flag/atomic_flag_test_explicit.pass.cpp @@ -23,90 +23,90 @@ { std::atomic_flag f; f.clear(); - assert(atomic_flag_test_explicit(&f, std::memory_order_relaxed) == 0); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_relaxed) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test_explicit(&f, std::memory_order_relaxed) == 1); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_relaxed) == 1); } { std::atomic_flag f; f.clear(); - assert(atomic_flag_test_explicit(&f, std::memory_order_consume) == 0); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_consume) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test_explicit(&f, std::memory_order_consume) == 1); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_consume) == 1); } { std::atomic_flag f; f.clear(); - assert(atomic_flag_test_explicit(&f, std::memory_order_acquire) == 0); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_acquire) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test_explicit(&f, std::memory_order_acquire) == 1); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_acquire) == 1); } #ifdef _LIBCPP_VERSION // Don't violate precondition [atomics.flag]/6 { std::atomic_flag f; f.clear(); - assert(atomic_flag_test_explicit(&f, std::memory_order_release) == 0); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_release) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test_explicit(&f, std::memory_order_release) == 1); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_release) == 1); } { std::atomic_flag f; f.clear(); - assert(atomic_flag_test_explicit(&f, std::memory_order_acq_rel) == 0); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_acq_rel) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test_explicit(&f, std::memory_order_acq_rel) == 1); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_acq_rel) == 1); } #endif // _LIBCPP_VERSION { std::atomic_flag f; f.clear(); - assert(atomic_flag_test_explicit(&f, std::memory_order_seq_cst) == 0); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_seq_cst) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test_explicit(&f, std::memory_order_seq_cst) == 1); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_seq_cst) == 1); } { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test_explicit(&f, std::memory_order_relaxed) == 0); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_relaxed) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test_explicit(&f, std::memory_order_relaxed) == 1); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_relaxed) == 1); } { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test_explicit(&f, std::memory_order_consume) == 0); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_consume) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test_explicit(&f, std::memory_order_consume) == 1); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_consume) == 1); } { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test_explicit(&f, std::memory_order_acquire) == 0); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_acquire) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test_explicit(&f, std::memory_order_acquire) == 1); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_acquire) == 1); } #ifdef _LIBCPP_VERSION // Don't violate precondition [atomics.flag]/6 { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test_explicit(&f, std::memory_order_release) == 0); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_release) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test_explicit(&f, std::memory_order_release) == 1); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_release) == 1); } { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test_explicit(&f, std::memory_order_acq_rel) == 0); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_acq_rel) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test_explicit(&f, std::memory_order_acq_rel) == 1); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_acq_rel) == 1); } #endif // _LIBCPP_VERSION { volatile std::atomic_flag f; f.clear(); - assert(atomic_flag_test_explicit(&f, std::memory_order_seq_cst) == 0); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_seq_cst) == 0); assert(f.test_and_set() == 0); - assert(atomic_flag_test_explicit(&f, std::memory_order_seq_cst) == 1); + assert(std::atomic_flag_test_explicit(&f, std::memory_order_seq_cst) == 1); } return 0; diff --git a/libcxx/test/std/containers/associative/map/map.cons/assign_initializer_list.pass.cpp b/libcxx/test/std/containers/associative/map/map.cons/assign_initializer_list.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.cons/assign_initializer_list.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.cons/assign_initializer_list.pass.cpp @@ -43,8 +43,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); } { typedef std::pair V; @@ -67,8 +67,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); } } diff --git a/libcxx/test/std/containers/associative/map/map.cons/copy.pass.cpp b/libcxx/test/std/containers/associative/map/map.cons/copy.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.cons/copy.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.cons/copy.pass.cpp @@ -45,16 +45,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.get_allocator() == A(7)); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == V(1, 1)); - assert(*next(mo.begin()) == V(2, 1)); - assert(*next(mo.begin(), 2) == V(3, 1)); + assert(*std::next(mo.begin()) == V(2, 1)); + assert(*std::next(mo.begin(), 2) == V(3, 1)); } #if TEST_STD_VER >= 11 { @@ -80,16 +80,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.get_allocator() == A(7)); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == V(1, 1)); - assert(*next(mo.begin()) == V(2, 1)); - assert(*next(mo.begin(), 2) == V(3, 1)); + assert(*std::next(mo.begin()) == V(2, 1)); + assert(*std::next(mo.begin(), 2) == V(3, 1)); } { typedef std::pair V; @@ -114,16 +114,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.get_allocator() == A()); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == V(1, 1)); - assert(*next(mo.begin()) == V(2, 1)); - assert(*next(mo.begin(), 2) == V(3, 1)); + assert(*std::next(mo.begin()) == V(2, 1)); + assert(*std::next(mo.begin(), 2) == V(3, 1)); } #endif diff --git a/libcxx/test/std/containers/associative/map/map.cons/copy_alloc.pass.cpp b/libcxx/test/std/containers/associative/map/map.cons/copy_alloc.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.cons/copy_alloc.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.cons/copy_alloc.pass.cpp @@ -45,16 +45,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.get_allocator() == A(7)); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == V(1, 1)); - assert(*next(mo.begin()) == V(2, 1)); - assert(*next(mo.begin(), 2) == V(3, 1)); + assert(*std::next(mo.begin()) == V(2, 1)); + assert(*std::next(mo.begin(), 2) == V(3, 1)); } #if TEST_STD_VER >= 11 { @@ -80,16 +80,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.get_allocator() == A()); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == V(1, 1)); - assert(*next(mo.begin()) == V(2, 1)); - assert(*next(mo.begin(), 2) == V(3, 1)); + assert(*std::next(mo.begin()) == V(2, 1)); + assert(*std::next(mo.begin(), 2) == V(3, 1)); } { typedef std::pair V; @@ -114,16 +114,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.get_allocator() == A()); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == V(1, 1)); - assert(*next(mo.begin()) == V(2, 1)); - assert(*next(mo.begin(), 2) == V(3, 1)); + assert(*std::next(mo.begin()) == V(2, 1)); + assert(*std::next(mo.begin(), 2) == V(3, 1)); } #endif diff --git a/libcxx/test/std/containers/associative/map/map.cons/copy_assign.pass.cpp b/libcxx/test/std/containers/associative/map/map.cons/copy_assign.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.cons/copy_assign.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.cons/copy_assign.pass.cpp @@ -140,16 +140,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.get_allocator() == A(2)); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == V(1, 1)); - assert(*next(mo.begin()) == V(2, 1)); - assert(*next(mo.begin(), 2) == V(3, 1)); + assert(*std::next(mo.begin()) == V(2, 1)); + assert(*std::next(mo.begin(), 2) == V(3, 1)); } { typedef std::pair V; @@ -190,16 +190,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.get_allocator() == A(2)); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == V(1, 1)); - assert(*next(mo.begin()) == V(2, 1)); - assert(*next(mo.begin(), 2) == V(3, 1)); + assert(*std::next(mo.begin()) == V(2, 1)); + assert(*std::next(mo.begin(), 2) == V(3, 1)); } #if TEST_STD_VER >= 11 { @@ -226,16 +226,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.get_allocator() == A()); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == V(1, 1)); - assert(*next(mo.begin()) == V(2, 1)); - assert(*next(mo.begin(), 2) == V(3, 1)); + assert(*std::next(mo.begin()) == V(2, 1)); + assert(*std::next(mo.begin(), 2) == V(3, 1)); } { typedef std::pair V; @@ -261,16 +261,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.get_allocator() == A()); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == V(1, 1)); - assert(*next(mo.begin()) == V(2, 1)); - assert(*next(mo.begin(), 2) == V(3, 1)); + assert(*std::next(mo.begin()) == V(2, 1)); + assert(*std::next(mo.begin(), 2) == V(3, 1)); } assert(balanced_allocs()); @@ -297,15 +297,15 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == V(1, 1)); - assert(*next(mo.begin()) == V(2, 1)); - assert(*next(mo.begin(), 2) == V(3, 1)); + assert(*std::next(mo.begin()) == V(2, 1)); + assert(*std::next(mo.begin(), 2) == V(3, 1)); } assert(balanced_allocs()); { @@ -331,15 +331,15 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == V(1, 1)); - assert(*next(mo.begin()) == V(2, 1)); - assert(*next(mo.begin(), 2) == V(3, 1)); + assert(*std::next(mo.begin()) == V(2, 1)); + assert(*std::next(mo.begin(), 2) == V(3, 1)); } assert(balanced_allocs()); #endif diff --git a/libcxx/test/std/containers/associative/map/map.cons/initializer_list.pass.cpp b/libcxx/test/std/containers/associative/map/map.cons/initializer_list.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.cons/initializer_list.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.cons/initializer_list.pass.cpp @@ -39,8 +39,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); } { typedef std::pair V; @@ -59,8 +59,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); } return 0; diff --git a/libcxx/test/std/containers/associative/map/map.cons/initializer_list_compare.pass.cpp b/libcxx/test/std/containers/associative/map/map.cons/initializer_list_compare.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.cons/initializer_list_compare.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.cons/initializer_list_compare.pass.cpp @@ -39,8 +39,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(m.key_comp() == C(3)); } { @@ -60,8 +60,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(m.key_comp() == C(3)); } diff --git a/libcxx/test/std/containers/associative/map/map.cons/initializer_list_compare_alloc.pass.cpp b/libcxx/test/std/containers/associative/map/map.cons/initializer_list_compare_alloc.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.cons/initializer_list_compare_alloc.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.cons/initializer_list_compare_alloc.pass.cpp @@ -41,8 +41,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(m.key_comp() == C(3)); assert(m.get_allocator() == A(6)); } @@ -64,8 +64,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(m.key_comp() == C(3)); assert(m.get_allocator() == A()); } @@ -89,8 +89,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(m.get_allocator() == a); } { @@ -112,8 +112,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(m.key_comp() == C(3)); assert(m.get_allocator() == a); } diff --git a/libcxx/test/std/containers/associative/map/map.cons/iter_iter.pass.cpp b/libcxx/test/std/containers/associative/map/map.cons/iter_iter.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.cons/iter_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.cons/iter_iter.pass.cpp @@ -39,8 +39,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); } #if TEST_STD_VER >= 11 { @@ -61,8 +61,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); } #endif diff --git a/libcxx/test/std/containers/associative/map/map.cons/iter_iter_comp.pass.cpp b/libcxx/test/std/containers/associative/map/map.cons/iter_iter_comp.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.cons/iter_iter_comp.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.cons/iter_iter_comp.pass.cpp @@ -42,8 +42,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); } #if TEST_STD_VER >= 11 { @@ -66,8 +66,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); } #endif diff --git a/libcxx/test/std/containers/associative/map/map.cons/iter_iter_comp_alloc.pass.cpp b/libcxx/test/std/containers/associative/map/map.cons/iter_iter_comp_alloc.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.cons/iter_iter_comp_alloc.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.cons/iter_iter_comp_alloc.pass.cpp @@ -46,8 +46,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); } #if TEST_STD_VER >= 11 { @@ -72,8 +72,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); } #if TEST_STD_VER > 11 { @@ -99,8 +99,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(m.get_allocator() == a); } { @@ -112,8 +112,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(m.get_allocator() == a); } } diff --git a/libcxx/test/std/containers/associative/map/map.cons/move.pass.cpp b/libcxx/test/std/containers/associative/map/map.cons/move.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.cons/move.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.cons/move.pass.cpp @@ -62,8 +62,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.get_allocator() == A(test_alloc_base::moved_value)); assert(mo.key_comp() == C(5)); @@ -107,8 +107,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); assert(mo.get_allocator() == A()); assert(mo.key_comp() == C(5)); diff --git a/libcxx/test/std/containers/associative/map/map.modifiers/emplace.pass.cpp b/libcxx/test/std/containers/associative/map/map.modifiers/emplace.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.modifiers/emplace.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.modifiers/emplace.pass.cpp @@ -41,18 +41,18 @@ r = m.emplace(std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); assert(r.second); - assert(r.first == next(m.begin())); + assert(r.first == std::next(m.begin())); assert(m.size() == 2); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == DefaultOnly()); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == DefaultOnly()); assert(DefaultOnly::count == 2); r = m.emplace(std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); assert(!r.second); - assert(r.first == next(m.begin())); + assert(r.first == std::next(m.begin())); assert(m.size() == 2); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == DefaultOnly()); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == DefaultOnly()); assert(DefaultOnly::count == 2); } assert(DefaultOnly::count == 0); @@ -108,18 +108,18 @@ r = m.emplace(std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); assert(r.second); - assert(r.first == next(m.begin())); + assert(r.first == std::next(m.begin())); assert(m.size() == 2); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == DefaultOnly()); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == DefaultOnly()); assert(DefaultOnly::count == 2); r = m.emplace(std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); assert(!r.second); - assert(r.first == next(m.begin())); + assert(r.first == std::next(m.begin())); assert(m.size() == 2); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == DefaultOnly()); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == DefaultOnly()); assert(DefaultOnly::count == 2); } assert(DefaultOnly::count == 0); diff --git a/libcxx/test/std/containers/associative/map/map.modifiers/emplace_hint.pass.cpp b/libcxx/test/std/containers/associative/map/map.modifiers/emplace_hint.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.modifiers/emplace_hint.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.modifiers/emplace_hint.pass.cpp @@ -39,18 +39,18 @@ r = m.emplace_hint(m.end(), std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 2); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == DefaultOnly()); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == DefaultOnly()); assert(DefaultOnly::count == 2); r = m.emplace_hint(m.end(), std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 2); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == DefaultOnly()); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == DefaultOnly()); assert(DefaultOnly::count == 2); } assert(DefaultOnly::count == 0); @@ -104,18 +104,18 @@ r = m.emplace_hint(m.end(), std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 2); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == DefaultOnly()); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == DefaultOnly()); assert(DefaultOnly::count == 2); r = m.emplace_hint(m.end(), std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 2); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == DefaultOnly()); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == DefaultOnly()); assert(DefaultOnly::count == 2); } assert(DefaultOnly::count == 0); diff --git a/libcxx/test/std/containers/associative/map/map.modifiers/erase_iter.pass.cpp b/libcxx/test/std/containers/associative/map/map.modifiers/erase_iter.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.modifiers/erase_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.modifiers/erase_iter.pass.cpp @@ -45,87 +45,87 @@ }; M m(ar, ar + sizeof(ar)/sizeof(ar[0])); assert(m.size() == 8); - I i = m.erase(next(m.cbegin(), 3)); + I i = m.erase(std::next(m.cbegin(), 3)); assert(m.size() == 7); - assert(i == next(m.begin(), 3)); + assert(i == std::next(m.begin(), 3)); assert(m.begin()->first == 1); assert(m.begin()->second == 1.5); - assert(next(m.begin())->first == 2); - assert(next(m.begin())->second == 2.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 3.5); - assert(next(m.begin(), 3)->first == 5); - assert(next(m.begin(), 3)->second == 5.5); - assert(next(m.begin(), 4)->first == 6); - assert(next(m.begin(), 4)->second == 6.5); - assert(next(m.begin(), 5)->first == 7); - assert(next(m.begin(), 5)->second == 7.5); - assert(next(m.begin(), 6)->first == 8); - assert(next(m.begin(), 6)->second == 8.5); + assert(std::next(m.begin())->first == 2); + assert(std::next(m.begin())->second == 2.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 3.5); + assert(std::next(m.begin(), 3)->first == 5); + assert(std::next(m.begin(), 3)->second == 5.5); + assert(std::next(m.begin(), 4)->first == 6); + assert(std::next(m.begin(), 4)->second == 6.5); + assert(std::next(m.begin(), 5)->first == 7); + assert(std::next(m.begin(), 5)->second == 7.5); + assert(std::next(m.begin(), 6)->first == 8); + assert(std::next(m.begin(), 6)->second == 8.5); - i = m.erase(next(m.cbegin(), 0)); + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 6); assert(i == m.begin()); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 3); - assert(next(m.begin())->second == 3.5); - assert(next(m.begin(), 2)->first == 5); - assert(next(m.begin(), 2)->second == 5.5); - assert(next(m.begin(), 3)->first == 6); - assert(next(m.begin(), 3)->second == 6.5); - assert(next(m.begin(), 4)->first == 7); - assert(next(m.begin(), 4)->second == 7.5); - assert(next(m.begin(), 5)->first == 8); - assert(next(m.begin(), 5)->second == 8.5); + assert(std::next(m.begin())->first == 3); + assert(std::next(m.begin())->second == 3.5); + assert(std::next(m.begin(), 2)->first == 5); + assert(std::next(m.begin(), 2)->second == 5.5); + assert(std::next(m.begin(), 3)->first == 6); + assert(std::next(m.begin(), 3)->second == 6.5); + assert(std::next(m.begin(), 4)->first == 7); + assert(std::next(m.begin(), 4)->second == 7.5); + assert(std::next(m.begin(), 5)->first == 8); + assert(std::next(m.begin(), 5)->second == 8.5); - i = m.erase(next(m.cbegin(), 5)); + i = m.erase(std::next(m.cbegin(), 5)); assert(m.size() == 5); assert(i == m.end()); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 3); - assert(next(m.begin())->second == 3.5); - assert(next(m.begin(), 2)->first == 5); - assert(next(m.begin(), 2)->second == 5.5); - assert(next(m.begin(), 3)->first == 6); - assert(next(m.begin(), 3)->second == 6.5); - assert(next(m.begin(), 4)->first == 7); - assert(next(m.begin(), 4)->second == 7.5); + assert(std::next(m.begin())->first == 3); + assert(std::next(m.begin())->second == 3.5); + assert(std::next(m.begin(), 2)->first == 5); + assert(std::next(m.begin(), 2)->second == 5.5); + assert(std::next(m.begin(), 3)->first == 6); + assert(std::next(m.begin(), 3)->second == 6.5); + assert(std::next(m.begin(), 4)->first == 7); + assert(std::next(m.begin(), 4)->second == 7.5); - i = m.erase(next(m.cbegin(), 1)); + i = m.erase(std::next(m.cbegin(), 1)); assert(m.size() == 4); - assert(i == next(m.begin())); + assert(i == std::next(m.begin())); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 5); - assert(next(m.begin())->second == 5.5); - assert(next(m.begin(), 2)->first == 6); - assert(next(m.begin(), 2)->second == 6.5); - assert(next(m.begin(), 3)->first == 7); - assert(next(m.begin(), 3)->second == 7.5); + assert(std::next(m.begin())->first == 5); + assert(std::next(m.begin())->second == 5.5); + assert(std::next(m.begin(), 2)->first == 6); + assert(std::next(m.begin(), 2)->second == 6.5); + assert(std::next(m.begin(), 3)->first == 7); + assert(std::next(m.begin(), 3)->second == 7.5); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 3); - assert(i == next(m.begin(), 2)); + assert(i == std::next(m.begin(), 2)); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 5); - assert(next(m.begin())->second == 5.5); - assert(next(m.begin(), 2)->first == 7); - assert(next(m.begin(), 2)->second == 7.5); + assert(std::next(m.begin())->first == 5); + assert(std::next(m.begin())->second == 5.5); + assert(std::next(m.begin(), 2)->first == 7); + assert(std::next(m.begin(), 2)->second == 7.5); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 2); - assert(i == next(m.begin(), 2)); + assert(i == std::next(m.begin(), 2)); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 5); - assert(next(m.begin())->second == 5.5); + assert(std::next(m.begin())->first == 5); + assert(std::next(m.begin())->second == 5.5); - i = m.erase(next(m.cbegin(), 0)); + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 1); - assert(i == next(m.begin(), 0)); + assert(i == std::next(m.begin(), 0)); assert(m.begin()->first == 5); assert(m.begin()->second == 5.5); @@ -152,87 +152,87 @@ }; M m(ar, ar + sizeof(ar)/sizeof(ar[0])); assert(m.size() == 8); - I i = m.erase(next(m.cbegin(), 3)); + I i = m.erase(std::next(m.cbegin(), 3)); assert(m.size() == 7); - assert(i == next(m.begin(), 3)); + assert(i == std::next(m.begin(), 3)); assert(m.begin()->first == 1); assert(m.begin()->second == 1.5); - assert(next(m.begin())->first == 2); - assert(next(m.begin())->second == 2.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 3.5); - assert(next(m.begin(), 3)->first == 5); - assert(next(m.begin(), 3)->second == 5.5); - assert(next(m.begin(), 4)->first == 6); - assert(next(m.begin(), 4)->second == 6.5); - assert(next(m.begin(), 5)->first == 7); - assert(next(m.begin(), 5)->second == 7.5); - assert(next(m.begin(), 6)->first == 8); - assert(next(m.begin(), 6)->second == 8.5); + assert(std::next(m.begin())->first == 2); + assert(std::next(m.begin())->second == 2.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 3.5); + assert(std::next(m.begin(), 3)->first == 5); + assert(std::next(m.begin(), 3)->second == 5.5); + assert(std::next(m.begin(), 4)->first == 6); + assert(std::next(m.begin(), 4)->second == 6.5); + assert(std::next(m.begin(), 5)->first == 7); + assert(std::next(m.begin(), 5)->second == 7.5); + assert(std::next(m.begin(), 6)->first == 8); + assert(std::next(m.begin(), 6)->second == 8.5); - i = m.erase(next(m.cbegin(), 0)); + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 6); assert(i == m.begin()); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 3); - assert(next(m.begin())->second == 3.5); - assert(next(m.begin(), 2)->first == 5); - assert(next(m.begin(), 2)->second == 5.5); - assert(next(m.begin(), 3)->first == 6); - assert(next(m.begin(), 3)->second == 6.5); - assert(next(m.begin(), 4)->first == 7); - assert(next(m.begin(), 4)->second == 7.5); - assert(next(m.begin(), 5)->first == 8); - assert(next(m.begin(), 5)->second == 8.5); + assert(std::next(m.begin())->first == 3); + assert(std::next(m.begin())->second == 3.5); + assert(std::next(m.begin(), 2)->first == 5); + assert(std::next(m.begin(), 2)->second == 5.5); + assert(std::next(m.begin(), 3)->first == 6); + assert(std::next(m.begin(), 3)->second == 6.5); + assert(std::next(m.begin(), 4)->first == 7); + assert(std::next(m.begin(), 4)->second == 7.5); + assert(std::next(m.begin(), 5)->first == 8); + assert(std::next(m.begin(), 5)->second == 8.5); - i = m.erase(next(m.cbegin(), 5)); + i = m.erase(std::next(m.cbegin(), 5)); assert(m.size() == 5); assert(i == m.end()); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 3); - assert(next(m.begin())->second == 3.5); - assert(next(m.begin(), 2)->first == 5); - assert(next(m.begin(), 2)->second == 5.5); - assert(next(m.begin(), 3)->first == 6); - assert(next(m.begin(), 3)->second == 6.5); - assert(next(m.begin(), 4)->first == 7); - assert(next(m.begin(), 4)->second == 7.5); + assert(std::next(m.begin())->first == 3); + assert(std::next(m.begin())->second == 3.5); + assert(std::next(m.begin(), 2)->first == 5); + assert(std::next(m.begin(), 2)->second == 5.5); + assert(std::next(m.begin(), 3)->first == 6); + assert(std::next(m.begin(), 3)->second == 6.5); + assert(std::next(m.begin(), 4)->first == 7); + assert(std::next(m.begin(), 4)->second == 7.5); - i = m.erase(next(m.cbegin(), 1)); + i = m.erase(std::next(m.cbegin(), 1)); assert(m.size() == 4); - assert(i == next(m.begin())); + assert(i == std::next(m.begin())); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 5); - assert(next(m.begin())->second == 5.5); - assert(next(m.begin(), 2)->first == 6); - assert(next(m.begin(), 2)->second == 6.5); - assert(next(m.begin(), 3)->first == 7); - assert(next(m.begin(), 3)->second == 7.5); + assert(std::next(m.begin())->first == 5); + assert(std::next(m.begin())->second == 5.5); + assert(std::next(m.begin(), 2)->first == 6); + assert(std::next(m.begin(), 2)->second == 6.5); + assert(std::next(m.begin(), 3)->first == 7); + assert(std::next(m.begin(), 3)->second == 7.5); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 3); - assert(i == next(m.begin(), 2)); + assert(i == std::next(m.begin(), 2)); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 5); - assert(next(m.begin())->second == 5.5); - assert(next(m.begin(), 2)->first == 7); - assert(next(m.begin(), 2)->second == 7.5); + assert(std::next(m.begin())->first == 5); + assert(std::next(m.begin())->second == 5.5); + assert(std::next(m.begin(), 2)->first == 7); + assert(std::next(m.begin(), 2)->second == 7.5); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 2); - assert(i == next(m.begin(), 2)); + assert(i == std::next(m.begin(), 2)); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 5); - assert(next(m.begin())->second == 5.5); + assert(std::next(m.begin())->first == 5); + assert(std::next(m.begin())->second == 5.5); - i = m.erase(next(m.cbegin(), 0)); + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 1); - assert(i == next(m.begin(), 0)); + assert(i == std::next(m.begin(), 0)); assert(m.begin()->first == 5); assert(m.begin()->second == 5.5); diff --git a/libcxx/test/std/containers/associative/map/map.modifiers/erase_iter_iter.pass.cpp b/libcxx/test/std/containers/associative/map/map.modifiers/erase_iter_iter.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.modifiers/erase_iter_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.modifiers/erase_iter_iter.pass.cpp @@ -42,44 +42,44 @@ assert(i == m.begin()); assert(m.begin()->first == 1); assert(m.begin()->second == 1.5); - assert(next(m.begin())->first == 2); - assert(next(m.begin())->second == 2.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 3.5); - assert(next(m.begin(), 3)->first == 4); - assert(next(m.begin(), 3)->second == 4.5); - assert(next(m.begin(), 4)->first == 5); - assert(next(m.begin(), 4)->second == 5.5); - assert(next(m.begin(), 5)->first == 6); - assert(next(m.begin(), 5)->second == 6.5); - assert(next(m.begin(), 6)->first == 7); - assert(next(m.begin(), 6)->second == 7.5); - assert(next(m.begin(), 7)->first == 8); - assert(next(m.begin(), 7)->second == 8.5); + assert(std::next(m.begin())->first == 2); + assert(std::next(m.begin())->second == 2.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 3.5); + assert(std::next(m.begin(), 3)->first == 4); + assert(std::next(m.begin(), 3)->second == 4.5); + assert(std::next(m.begin(), 4)->first == 5); + assert(std::next(m.begin(), 4)->second == 5.5); + assert(std::next(m.begin(), 5)->first == 6); + assert(std::next(m.begin(), 5)->second == 6.5); + assert(std::next(m.begin(), 6)->first == 7); + assert(std::next(m.begin(), 6)->second == 7.5); + assert(std::next(m.begin(), 7)->first == 8); + assert(std::next(m.begin(), 7)->second == 8.5); - i = m.erase(m.cbegin(), next(m.cbegin(), 2)); + i = m.erase(m.cbegin(), std::next(m.cbegin(), 2)); assert(m.size() == 6); assert(i == m.begin()); - assert(next(m.begin(), 0)->first == 3); - assert(next(m.begin(), 0)->second == 3.5); - assert(next(m.begin(), 1)->first == 4); - assert(next(m.begin(), 1)->second == 4.5); - assert(next(m.begin(), 2)->first == 5); - assert(next(m.begin(), 2)->second == 5.5); - assert(next(m.begin(), 3)->first == 6); - assert(next(m.begin(), 3)->second == 6.5); - assert(next(m.begin(), 4)->first == 7); - assert(next(m.begin(), 4)->second == 7.5); - assert(next(m.begin(), 5)->first == 8); - assert(next(m.begin(), 5)->second == 8.5); + assert(std::next(m.begin(), 0)->first == 3); + assert(std::next(m.begin(), 0)->second == 3.5); + assert(std::next(m.begin(), 1)->first == 4); + assert(std::next(m.begin(), 1)->second == 4.5); + assert(std::next(m.begin(), 2)->first == 5); + assert(std::next(m.begin(), 2)->second == 5.5); + assert(std::next(m.begin(), 3)->first == 6); + assert(std::next(m.begin(), 3)->second == 6.5); + assert(std::next(m.begin(), 4)->first == 7); + assert(std::next(m.begin(), 4)->second == 7.5); + assert(std::next(m.begin(), 5)->first == 8); + assert(std::next(m.begin(), 5)->second == 8.5); - i = m.erase(next(m.cbegin(), 2), next(m.cbegin(), 6)); + i = m.erase(std::next(m.cbegin(), 2), std::next(m.cbegin(), 6)); assert(m.size() == 2); - assert(i == next(m.begin(), 2)); - assert(next(m.begin(), 0)->first == 3); - assert(next(m.begin(), 0)->second == 3.5); - assert(next(m.begin(), 1)->first == 4); - assert(next(m.begin(), 1)->second == 4.5); + assert(i == std::next(m.begin(), 2)); + assert(std::next(m.begin(), 0)->first == 3); + assert(std::next(m.begin(), 0)->second == 3.5); + assert(std::next(m.begin(), 1)->first == 4); + assert(std::next(m.begin(), 1)->second == 4.5); i = m.erase(m.cbegin(), m.cend()); assert(m.size() == 0); @@ -109,44 +109,44 @@ assert(i == m.begin()); assert(m.begin()->first == 1); assert(m.begin()->second == 1.5); - assert(next(m.begin())->first == 2); - assert(next(m.begin())->second == 2.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 3.5); - assert(next(m.begin(), 3)->first == 4); - assert(next(m.begin(), 3)->second == 4.5); - assert(next(m.begin(), 4)->first == 5); - assert(next(m.begin(), 4)->second == 5.5); - assert(next(m.begin(), 5)->first == 6); - assert(next(m.begin(), 5)->second == 6.5); - assert(next(m.begin(), 6)->first == 7); - assert(next(m.begin(), 6)->second == 7.5); - assert(next(m.begin(), 7)->first == 8); - assert(next(m.begin(), 7)->second == 8.5); + assert(std::next(m.begin())->first == 2); + assert(std::next(m.begin())->second == 2.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 3.5); + assert(std::next(m.begin(), 3)->first == 4); + assert(std::next(m.begin(), 3)->second == 4.5); + assert(std::next(m.begin(), 4)->first == 5); + assert(std::next(m.begin(), 4)->second == 5.5); + assert(std::next(m.begin(), 5)->first == 6); + assert(std::next(m.begin(), 5)->second == 6.5); + assert(std::next(m.begin(), 6)->first == 7); + assert(std::next(m.begin(), 6)->second == 7.5); + assert(std::next(m.begin(), 7)->first == 8); + assert(std::next(m.begin(), 7)->second == 8.5); - i = m.erase(m.cbegin(), next(m.cbegin(), 2)); + i = m.erase(m.cbegin(), std::next(m.cbegin(), 2)); assert(m.size() == 6); assert(i == m.begin()); - assert(next(m.begin(), 0)->first == 3); - assert(next(m.begin(), 0)->second == 3.5); - assert(next(m.begin(), 1)->first == 4); - assert(next(m.begin(), 1)->second == 4.5); - assert(next(m.begin(), 2)->first == 5); - assert(next(m.begin(), 2)->second == 5.5); - assert(next(m.begin(), 3)->first == 6); - assert(next(m.begin(), 3)->second == 6.5); - assert(next(m.begin(), 4)->first == 7); - assert(next(m.begin(), 4)->second == 7.5); - assert(next(m.begin(), 5)->first == 8); - assert(next(m.begin(), 5)->second == 8.5); + assert(std::next(m.begin(), 0)->first == 3); + assert(std::next(m.begin(), 0)->second == 3.5); + assert(std::next(m.begin(), 1)->first == 4); + assert(std::next(m.begin(), 1)->second == 4.5); + assert(std::next(m.begin(), 2)->first == 5); + assert(std::next(m.begin(), 2)->second == 5.5); + assert(std::next(m.begin(), 3)->first == 6); + assert(std::next(m.begin(), 3)->second == 6.5); + assert(std::next(m.begin(), 4)->first == 7); + assert(std::next(m.begin(), 4)->second == 7.5); + assert(std::next(m.begin(), 5)->first == 8); + assert(std::next(m.begin(), 5)->second == 8.5); - i = m.erase(next(m.cbegin(), 2), next(m.cbegin(), 6)); + i = m.erase(std::next(m.cbegin(), 2), std::next(m.cbegin(), 6)); assert(m.size() == 2); - assert(i == next(m.begin(), 2)); - assert(next(m.begin(), 0)->first == 3); - assert(next(m.begin(), 0)->second == 3.5); - assert(next(m.begin(), 1)->first == 4); - assert(next(m.begin(), 1)->second == 4.5); + assert(i == std::next(m.begin(), 2)); + assert(std::next(m.begin(), 0)->first == 3); + assert(std::next(m.begin(), 0)->second == 3.5); + assert(std::next(m.begin(), 1)->first == 4); + assert(std::next(m.begin(), 1)->second == 4.5); i = m.erase(m.cbegin(), m.cend()); assert(m.size() == 0); diff --git a/libcxx/test/std/containers/associative/map/map.modifiers/erase_key.pass.cpp b/libcxx/test/std/containers/associative/map/map.modifiers/erase_key.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.modifiers/erase_key.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.modifiers/erase_key.pass.cpp @@ -42,98 +42,98 @@ assert(m.size() == 8); assert(m.begin()->first == 1); assert(m.begin()->second == 1.5); - assert(next(m.begin())->first == 2); - assert(next(m.begin())->second == 2.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 3.5); - assert(next(m.begin(), 3)->first == 4); - assert(next(m.begin(), 3)->second == 4.5); - assert(next(m.begin(), 4)->first == 5); - assert(next(m.begin(), 4)->second == 5.5); - assert(next(m.begin(), 5)->first == 6); - assert(next(m.begin(), 5)->second == 6.5); - assert(next(m.begin(), 6)->first == 7); - assert(next(m.begin(), 6)->second == 7.5); - assert(next(m.begin(), 7)->first == 8); - assert(next(m.begin(), 7)->second == 8.5); + assert(std::next(m.begin())->first == 2); + assert(std::next(m.begin())->second == 2.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 3.5); + assert(std::next(m.begin(), 3)->first == 4); + assert(std::next(m.begin(), 3)->second == 4.5); + assert(std::next(m.begin(), 4)->first == 5); + assert(std::next(m.begin(), 4)->second == 5.5); + assert(std::next(m.begin(), 5)->first == 6); + assert(std::next(m.begin(), 5)->second == 6.5); + assert(std::next(m.begin(), 6)->first == 7); + assert(std::next(m.begin(), 6)->second == 7.5); + assert(std::next(m.begin(), 7)->first == 8); + assert(std::next(m.begin(), 7)->second == 8.5); s = m.erase(4); assert(m.size() == 7); assert(s == 1); assert(m.begin()->first == 1); assert(m.begin()->second == 1.5); - assert(next(m.begin())->first == 2); - assert(next(m.begin())->second == 2.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 3.5); - assert(next(m.begin(), 3)->first == 5); - assert(next(m.begin(), 3)->second == 5.5); - assert(next(m.begin(), 4)->first == 6); - assert(next(m.begin(), 4)->second == 6.5); - assert(next(m.begin(), 5)->first == 7); - assert(next(m.begin(), 5)->second == 7.5); - assert(next(m.begin(), 6)->first == 8); - assert(next(m.begin(), 6)->second == 8.5); + assert(std::next(m.begin())->first == 2); + assert(std::next(m.begin())->second == 2.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 3.5); + assert(std::next(m.begin(), 3)->first == 5); + assert(std::next(m.begin(), 3)->second == 5.5); + assert(std::next(m.begin(), 4)->first == 6); + assert(std::next(m.begin(), 4)->second == 6.5); + assert(std::next(m.begin(), 5)->first == 7); + assert(std::next(m.begin(), 5)->second == 7.5); + assert(std::next(m.begin(), 6)->first == 8); + assert(std::next(m.begin(), 6)->second == 8.5); s = m.erase(1); assert(m.size() == 6); assert(s == 1); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 3); - assert(next(m.begin())->second == 3.5); - assert(next(m.begin(), 2)->first == 5); - assert(next(m.begin(), 2)->second == 5.5); - assert(next(m.begin(), 3)->first == 6); - assert(next(m.begin(), 3)->second == 6.5); - assert(next(m.begin(), 4)->first == 7); - assert(next(m.begin(), 4)->second == 7.5); - assert(next(m.begin(), 5)->first == 8); - assert(next(m.begin(), 5)->second == 8.5); + assert(std::next(m.begin())->first == 3); + assert(std::next(m.begin())->second == 3.5); + assert(std::next(m.begin(), 2)->first == 5); + assert(std::next(m.begin(), 2)->second == 5.5); + assert(std::next(m.begin(), 3)->first == 6); + assert(std::next(m.begin(), 3)->second == 6.5); + assert(std::next(m.begin(), 4)->first == 7); + assert(std::next(m.begin(), 4)->second == 7.5); + assert(std::next(m.begin(), 5)->first == 8); + assert(std::next(m.begin(), 5)->second == 8.5); s = m.erase(8); assert(m.size() == 5); assert(s == 1); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 3); - assert(next(m.begin())->second == 3.5); - assert(next(m.begin(), 2)->first == 5); - assert(next(m.begin(), 2)->second == 5.5); - assert(next(m.begin(), 3)->first == 6); - assert(next(m.begin(), 3)->second == 6.5); - assert(next(m.begin(), 4)->first == 7); - assert(next(m.begin(), 4)->second == 7.5); + assert(std::next(m.begin())->first == 3); + assert(std::next(m.begin())->second == 3.5); + assert(std::next(m.begin(), 2)->first == 5); + assert(std::next(m.begin(), 2)->second == 5.5); + assert(std::next(m.begin(), 3)->first == 6); + assert(std::next(m.begin(), 3)->second == 6.5); + assert(std::next(m.begin(), 4)->first == 7); + assert(std::next(m.begin(), 4)->second == 7.5); s = m.erase(3); assert(m.size() == 4); assert(s == 1); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 5); - assert(next(m.begin())->second == 5.5); - assert(next(m.begin(), 2)->first == 6); - assert(next(m.begin(), 2)->second == 6.5); - assert(next(m.begin(), 3)->first == 7); - assert(next(m.begin(), 3)->second == 7.5); + assert(std::next(m.begin())->first == 5); + assert(std::next(m.begin())->second == 5.5); + assert(std::next(m.begin(), 2)->first == 6); + assert(std::next(m.begin(), 2)->second == 6.5); + assert(std::next(m.begin(), 3)->first == 7); + assert(std::next(m.begin(), 3)->second == 7.5); s = m.erase(6); assert(m.size() == 3); assert(s == 1); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 5); - assert(next(m.begin())->second == 5.5); - assert(next(m.begin(), 2)->first == 7); - assert(next(m.begin(), 2)->second == 7.5); + assert(std::next(m.begin())->first == 5); + assert(std::next(m.begin())->second == 5.5); + assert(std::next(m.begin(), 2)->first == 7); + assert(std::next(m.begin(), 2)->second == 7.5); s = m.erase(7); assert(m.size() == 2); assert(s == 1); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 5); - assert(next(m.begin())->second == 5.5); + assert(std::next(m.begin())->first == 5); + assert(std::next(m.begin())->second == 5.5); s = m.erase(2); assert(m.size() == 1); @@ -168,98 +168,98 @@ assert(m.size() == 8); assert(m.begin()->first == 1); assert(m.begin()->second == 1.5); - assert(next(m.begin())->first == 2); - assert(next(m.begin())->second == 2.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 3.5); - assert(next(m.begin(), 3)->first == 4); - assert(next(m.begin(), 3)->second == 4.5); - assert(next(m.begin(), 4)->first == 5); - assert(next(m.begin(), 4)->second == 5.5); - assert(next(m.begin(), 5)->first == 6); - assert(next(m.begin(), 5)->second == 6.5); - assert(next(m.begin(), 6)->first == 7); - assert(next(m.begin(), 6)->second == 7.5); - assert(next(m.begin(), 7)->first == 8); - assert(next(m.begin(), 7)->second == 8.5); + assert(std::next(m.begin())->first == 2); + assert(std::next(m.begin())->second == 2.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 3.5); + assert(std::next(m.begin(), 3)->first == 4); + assert(std::next(m.begin(), 3)->second == 4.5); + assert(std::next(m.begin(), 4)->first == 5); + assert(std::next(m.begin(), 4)->second == 5.5); + assert(std::next(m.begin(), 5)->first == 6); + assert(std::next(m.begin(), 5)->second == 6.5); + assert(std::next(m.begin(), 6)->first == 7); + assert(std::next(m.begin(), 6)->second == 7.5); + assert(std::next(m.begin(), 7)->first == 8); + assert(std::next(m.begin(), 7)->second == 8.5); s = m.erase(4); assert(m.size() == 7); assert(s == 1); assert(m.begin()->first == 1); assert(m.begin()->second == 1.5); - assert(next(m.begin())->first == 2); - assert(next(m.begin())->second == 2.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 3.5); - assert(next(m.begin(), 3)->first == 5); - assert(next(m.begin(), 3)->second == 5.5); - assert(next(m.begin(), 4)->first == 6); - assert(next(m.begin(), 4)->second == 6.5); - assert(next(m.begin(), 5)->first == 7); - assert(next(m.begin(), 5)->second == 7.5); - assert(next(m.begin(), 6)->first == 8); - assert(next(m.begin(), 6)->second == 8.5); + assert(std::next(m.begin())->first == 2); + assert(std::next(m.begin())->second == 2.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 3.5); + assert(std::next(m.begin(), 3)->first == 5); + assert(std::next(m.begin(), 3)->second == 5.5); + assert(std::next(m.begin(), 4)->first == 6); + assert(std::next(m.begin(), 4)->second == 6.5); + assert(std::next(m.begin(), 5)->first == 7); + assert(std::next(m.begin(), 5)->second == 7.5); + assert(std::next(m.begin(), 6)->first == 8); + assert(std::next(m.begin(), 6)->second == 8.5); s = m.erase(1); assert(m.size() == 6); assert(s == 1); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 3); - assert(next(m.begin())->second == 3.5); - assert(next(m.begin(), 2)->first == 5); - assert(next(m.begin(), 2)->second == 5.5); - assert(next(m.begin(), 3)->first == 6); - assert(next(m.begin(), 3)->second == 6.5); - assert(next(m.begin(), 4)->first == 7); - assert(next(m.begin(), 4)->second == 7.5); - assert(next(m.begin(), 5)->first == 8); - assert(next(m.begin(), 5)->second == 8.5); + assert(std::next(m.begin())->first == 3); + assert(std::next(m.begin())->second == 3.5); + assert(std::next(m.begin(), 2)->first == 5); + assert(std::next(m.begin(), 2)->second == 5.5); + assert(std::next(m.begin(), 3)->first == 6); + assert(std::next(m.begin(), 3)->second == 6.5); + assert(std::next(m.begin(), 4)->first == 7); + assert(std::next(m.begin(), 4)->second == 7.5); + assert(std::next(m.begin(), 5)->first == 8); + assert(std::next(m.begin(), 5)->second == 8.5); s = m.erase(8); assert(m.size() == 5); assert(s == 1); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 3); - assert(next(m.begin())->second == 3.5); - assert(next(m.begin(), 2)->first == 5); - assert(next(m.begin(), 2)->second == 5.5); - assert(next(m.begin(), 3)->first == 6); - assert(next(m.begin(), 3)->second == 6.5); - assert(next(m.begin(), 4)->first == 7); - assert(next(m.begin(), 4)->second == 7.5); + assert(std::next(m.begin())->first == 3); + assert(std::next(m.begin())->second == 3.5); + assert(std::next(m.begin(), 2)->first == 5); + assert(std::next(m.begin(), 2)->second == 5.5); + assert(std::next(m.begin(), 3)->first == 6); + assert(std::next(m.begin(), 3)->second == 6.5); + assert(std::next(m.begin(), 4)->first == 7); + assert(std::next(m.begin(), 4)->second == 7.5); s = m.erase(3); assert(m.size() == 4); assert(s == 1); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 5); - assert(next(m.begin())->second == 5.5); - assert(next(m.begin(), 2)->first == 6); - assert(next(m.begin(), 2)->second == 6.5); - assert(next(m.begin(), 3)->first == 7); - assert(next(m.begin(), 3)->second == 7.5); + assert(std::next(m.begin())->first == 5); + assert(std::next(m.begin())->second == 5.5); + assert(std::next(m.begin(), 2)->first == 6); + assert(std::next(m.begin(), 2)->second == 6.5); + assert(std::next(m.begin(), 3)->first == 7); + assert(std::next(m.begin(), 3)->second == 7.5); s = m.erase(6); assert(m.size() == 3); assert(s == 1); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 5); - assert(next(m.begin())->second == 5.5); - assert(next(m.begin(), 2)->first == 7); - assert(next(m.begin(), 2)->second == 7.5); + assert(std::next(m.begin())->first == 5); + assert(std::next(m.begin())->second == 5.5); + assert(std::next(m.begin(), 2)->first == 7); + assert(std::next(m.begin(), 2)->second == 7.5); s = m.erase(7); assert(m.size() == 2); assert(s == 1); assert(m.begin()->first == 2); assert(m.begin()->second == 2.5); - assert(next(m.begin())->first == 5); - assert(next(m.begin())->second == 5.5); + assert(std::next(m.begin())->first == 5); + assert(std::next(m.begin())->second == 5.5); s = m.erase(2); assert(m.size() == 1); diff --git a/libcxx/test/std/containers/associative/map/map.modifiers/insert_cv.pass.cpp b/libcxx/test/std/containers/associative/map/map.modifiers/insert_cv.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.modifiers/insert_cv.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.modifiers/insert_cv.pass.cpp @@ -45,7 +45,7 @@ const VT v3(3, 3.5); r = m.insert(v3); assert(r.second); - assert(r.first == prev(m.end())); + assert(r.first == std::prev(m.end())); assert(m.size() == 3); assert(r.first->first == 3); assert(r.first->second == 3.5); @@ -53,7 +53,7 @@ const VT v4(3, 4.5); r = m.insert(v4); assert(!r.second); - assert(r.first == prev(m.end())); + assert(r.first == std::prev(m.end())); assert(m.size() == 3); assert(r.first->first == 3); assert(r.first->second == 3.5); diff --git a/libcxx/test/std/containers/associative/map/map.modifiers/insert_initializer_list.pass.cpp b/libcxx/test/std/containers/associative/map/map.modifiers/insert_initializer_list.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.modifiers/insert_initializer_list.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.modifiers/insert_initializer_list.pass.cpp @@ -41,8 +41,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); } { typedef std::pair V; @@ -63,8 +63,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(2, 1)); - assert(*next(m.begin(), 2) == V(3, 1)); + assert(*std::next(m.begin()) == V(2, 1)); + assert(*std::next(m.begin(), 2) == V(3, 1)); } return 0; diff --git a/libcxx/test/std/containers/associative/map/map.modifiers/insert_iter_cv.pass.cpp b/libcxx/test/std/containers/associative/map/map.modifiers/insert_iter_cv.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.modifiers/insert_iter_cv.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.modifiers/insert_iter_cv.pass.cpp @@ -42,14 +42,14 @@ const VT v3(3, 3.5); r = m.insert(m.end(), v3); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(r->first == 3); assert(r->second == 3.5); const VT v4(3, 4.5); r = m.insert(m.end(), v4); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(r->first == 3); assert(r->second == 3.5); diff --git a/libcxx/test/std/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp b/libcxx/test/std/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp @@ -42,10 +42,10 @@ assert(m.size() == 3); assert(m.begin()->first == 1); assert(m.begin()->second == 1); - assert(next(m.begin())->first == 2); - assert(next(m.begin())->second == 1); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 1); + assert(std::next(m.begin())->first == 2); + assert(std::next(m.begin())->second == 1); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 1); } #if TEST_STD_VER >= 11 { @@ -68,10 +68,10 @@ assert(m.size() == 3); assert(m.begin()->first == 1); assert(m.begin()->second == 1); - assert(next(m.begin())->first == 2); - assert(next(m.begin())->second == 1); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 1); + assert(std::next(m.begin())->first == 2); + assert(std::next(m.begin())->second == 1); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 1); } #endif diff --git a/libcxx/test/std/containers/associative/map/map.modifiers/insert_iter_rv.pass.cpp b/libcxx/test/std/containers/associative/map/map.modifiers/insert_iter_rv.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.modifiers/insert_iter_rv.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.modifiers/insert_iter_rv.pass.cpp @@ -42,13 +42,13 @@ assert(r->second == 1); r = m.insert(m.end(), P(3, 3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(r->first == 3); assert(r->second == 3); r = m.insert(m.end(), P(3, 4)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(r->first == 3); assert(r->second == 3); @@ -82,13 +82,13 @@ assert(r->second == 1); r = m.insert(m.end(), {3, MoveOnly(3)}); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(r->first == 3); assert(r->second == 3); r = m.insert(m.end(), {3, MoveOnly(3)}); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(r->first == 3); assert(r->second == 3); diff --git a/libcxx/test/std/containers/associative/map/map.modifiers/insert_rv.pass.cpp b/libcxx/test/std/containers/associative/map/map.modifiers/insert_rv.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.modifiers/insert_rv.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.modifiers/insert_rv.pass.cpp @@ -46,14 +46,14 @@ r = m.insert(P(3, 3)); assert(r.second); - assert(r.first == prev(m.end())); + assert(r.first == std::prev(m.end())); assert(m.size() == 3); assert(r.first->first == 3); assert(r.first->second == 3); r = m.insert(P(3, 3)); assert(!r.second); - assert(r.first == prev(m.end())); + assert(r.first == std::prev(m.end())); assert(m.size() == 3); assert(r.first->first == 3); assert(r.first->second == 3); @@ -91,14 +91,14 @@ r = m.insert({3, MoveOnly(3)}); assert(r.second); - assert(r.first == prev(m.end())); + assert(r.first == std::prev(m.end())); assert(m.size() == 3); assert(r.first->first == 3); assert(r.first->second == 3); r = m.insert({3, MoveOnly(3)}); assert(!r.second); - assert(r.first == prev(m.end())); + assert(r.first == std::prev(m.end())); assert(m.size() == 3); assert(r.first->first == 3); assert(r.first->second == 3); diff --git a/libcxx/test/std/containers/associative/map/map.ops/equal_range.pass.cpp b/libcxx/test/std/containers/associative/map/map.ops/equal_range.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.ops/equal_range.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.ops/equal_range.pass.cpp @@ -41,56 +41,56 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(11); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(13); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(15); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(17); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(19); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 8)); r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(12); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(14); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(16); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(18); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(20); - assert(r.first == next(m.begin(), 8)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 8)); + assert(r.second == std::next(m.begin(), 8)); } { typedef std::pair R; @@ -107,56 +107,56 @@ }; const M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(11); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(13); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(15); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(17); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(19); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 8)); r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(12); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(14); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(16); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(18); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(20); - assert(r.first == next(m.begin(), 8)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 8)); + assert(r.second == std::next(m.begin(), 8)); } } #if TEST_STD_VER >= 11 @@ -178,56 +178,56 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(11); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(13); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(15); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(17); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(19); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 8)); r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(12); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(14); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(16); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(18); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(20); - assert(r.first == next(m.begin(), 8)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 8)); + assert(r.second == std::next(m.begin(), 8)); } { typedef std::pair R; @@ -244,56 +244,56 @@ }; const M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(11); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(13); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(15); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(17); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(19); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 8)); r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(12); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(14); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(16); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(18); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(20); - assert(r.first == next(m.begin(), 8)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 8)); + assert(r.second == std::next(m.begin(), 8)); } } #endif @@ -316,108 +316,108 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(11); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(13); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(15); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(17); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(19); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 8)); r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(12); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(14); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(16); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(18); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(20); - assert(r.first == next(m.begin(), 8)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 8)); + assert(r.second == std::next(m.begin(), 8)); r = m.equal_range(C2Int(5)); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(C2Int(7)); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(C2Int(9)); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(C2Int(11)); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(C2Int(13)); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(C2Int(15)); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(C2Int(17)); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(C2Int(19)); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 8)); r = m.equal_range(C2Int(4)); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(C2Int(6)); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(C2Int(8)); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(C2Int(10)); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(C2Int(12)); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(C2Int(14)); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(C2Int(16)); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(C2Int(18)); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(C2Int(20)); - assert(r.first == next(m.begin(), 8)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 8)); + assert(r.second == std::next(m.begin(), 8)); } { typedef PrivateConstructor PC; @@ -435,56 +435,56 @@ m [ PC::make(19) ] = 12; R r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(11); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(13); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(15); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(17); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(19); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 8)); r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(12); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(14); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(16); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(18); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(20); - assert(r.first == next(m.begin(), 8)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 8)); + assert(r.second == std::next(m.begin(), 8)); } #endif diff --git a/libcxx/test/std/containers/associative/map/map.ops/find.pass.cpp b/libcxx/test/std/containers/associative/map/map.ops/find.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.ops/find.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.ops/find.pass.cpp @@ -43,21 +43,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -76,21 +76,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #if TEST_STD_VER >= 11 @@ -114,21 +114,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -147,21 +147,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #endif @@ -186,40 +186,40 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.find(C2Int(5)); assert(r == m.begin()); r = m.find(C2Int(6)); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(C2Int(7)); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(C2Int(8)); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(C2Int(9)); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(C2Int(10)); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(C2Int(11)); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(C2Int(12)); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(C2Int(4)); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { @@ -240,21 +240,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } #endif diff --git a/libcxx/test/std/containers/associative/map/map.ops/lower_bound.pass.cpp b/libcxx/test/std/containers/associative/map/map.ops/lower_bound.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.ops/lower_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.ops/lower_bound.pass.cpp @@ -43,37 +43,37 @@ R r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(7); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.lower_bound(9); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(11); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(13); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(15); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(17); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(19); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.lower_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -92,37 +92,37 @@ R r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(7); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.lower_bound(9); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(11); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(13); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(15); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(17); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(19); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.lower_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #if TEST_STD_VER >= 11 @@ -146,37 +146,37 @@ R r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(7); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.lower_bound(9); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(11); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(13); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(15); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(17); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(19); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.lower_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -195,37 +195,37 @@ R r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(7); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.lower_bound(9); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(11); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(13); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(15); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(17); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(19); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.lower_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #endif @@ -250,72 +250,72 @@ R r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(7); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.lower_bound(9); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(11); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(13); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(15); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(17); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(19); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.lower_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.lower_bound(C2Int(5)); assert(r == m.begin()); r = m.lower_bound(C2Int(7)); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.lower_bound(C2Int(9)); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(C2Int(11)); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(C2Int(13)); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(C2Int(15)); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(C2Int(17)); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(C2Int(19)); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(C2Int(4)); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(C2Int(6)); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.lower_bound(C2Int(8)); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(C2Int(10)); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(C2Int(12)); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(C2Int(14)); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(C2Int(16)); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(C2Int(18)); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(C2Int(20)); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { @@ -336,37 +336,37 @@ R r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(7); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.lower_bound(9); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(11); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(13); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(15); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(17); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(19); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.lower_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } #endif diff --git a/libcxx/test/std/containers/associative/map/map.ops/upper_bound.pass.cpp b/libcxx/test/std/containers/associative/map/map.ops/upper_bound.pass.cpp --- a/libcxx/test/std/containers/associative/map/map.ops/upper_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.ops/upper_bound.pass.cpp @@ -40,39 +40,39 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(5); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(9); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(11); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(13); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(15); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(17); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(19); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -89,39 +89,39 @@ }; const M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(5); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(9); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(11); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(13); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(15); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(17); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(19); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #if TEST_STD_VER >= 11 @@ -143,39 +143,39 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(5); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(9); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(11); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(13); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(15); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(17); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(19); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -192,39 +192,39 @@ }; const M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(5); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(9); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(11); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(13); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(15); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(17); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(19); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #endif @@ -246,39 +246,39 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(5); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(9); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(11); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(13); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(15); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(17); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(19); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { @@ -297,39 +297,39 @@ m [ PC::make(19) ] = 12; R r = m.upper_bound(5); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(9); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(11); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(13); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(15); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(17); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(19); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } #endif diff --git a/libcxx/test/std/containers/associative/multimap/multimap.cons/iter_iter.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.cons/iter_iter.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.cons/iter_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.cons/iter_iter.pass.cpp @@ -39,14 +39,14 @@ assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(1, 1.5)); - assert(*next(m.begin(), 2) == V(1, 2)); - assert(*next(m.begin(), 3) == V(2, 1)); - assert(*next(m.begin(), 4) == V(2, 1.5)); - assert(*next(m.begin(), 5) == V(2, 2)); - assert(*next(m.begin(), 6) == V(3, 1)); - assert(*next(m.begin(), 7) == V(3, 1.5)); - assert(*next(m.begin(), 8) == V(3, 2)); + assert(*std::next(m.begin()) == V(1, 1.5)); + assert(*std::next(m.begin(), 2) == V(1, 2)); + assert(*std::next(m.begin(), 3) == V(2, 1)); + assert(*std::next(m.begin(), 4) == V(2, 1.5)); + assert(*std::next(m.begin(), 5) == V(2, 2)); + assert(*std::next(m.begin(), 6) == V(3, 1)); + assert(*std::next(m.begin(), 7) == V(3, 1.5)); + assert(*std::next(m.begin(), 8) == V(3, 2)); } #if TEST_STD_VER >= 11 { @@ -67,14 +67,14 @@ assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(1, 1.5)); - assert(*next(m.begin(), 2) == V(1, 2)); - assert(*next(m.begin(), 3) == V(2, 1)); - assert(*next(m.begin(), 4) == V(2, 1.5)); - assert(*next(m.begin(), 5) == V(2, 2)); - assert(*next(m.begin(), 6) == V(3, 1)); - assert(*next(m.begin(), 7) == V(3, 1.5)); - assert(*next(m.begin(), 8) == V(3, 2)); + assert(*std::next(m.begin()) == V(1, 1.5)); + assert(*std::next(m.begin(), 2) == V(1, 2)); + assert(*std::next(m.begin(), 3) == V(2, 1)); + assert(*std::next(m.begin(), 4) == V(2, 1.5)); + assert(*std::next(m.begin(), 5) == V(2, 2)); + assert(*std::next(m.begin(), 6) == V(3, 1)); + assert(*std::next(m.begin(), 7) == V(3, 1.5)); + assert(*std::next(m.begin(), 8) == V(3, 2)); } #if TEST_STD_VER > 11 { @@ -97,14 +97,14 @@ assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(1, 1.5)); - assert(*next(m.begin(), 2) == V(1, 2)); - assert(*next(m.begin(), 3) == V(2, 1)); - assert(*next(m.begin(), 4) == V(2, 1.5)); - assert(*next(m.begin(), 5) == V(2, 2)); - assert(*next(m.begin(), 6) == V(3, 1)); - assert(*next(m.begin(), 7) == V(3, 1.5)); - assert(*next(m.begin(), 8) == V(3, 2)); + assert(*std::next(m.begin()) == V(1, 1.5)); + assert(*std::next(m.begin(), 2) == V(1, 2)); + assert(*std::next(m.begin(), 3) == V(2, 1)); + assert(*std::next(m.begin(), 4) == V(2, 1.5)); + assert(*std::next(m.begin(), 5) == V(2, 2)); + assert(*std::next(m.begin(), 6) == V(3, 1)); + assert(*std::next(m.begin(), 7) == V(3, 1.5)); + assert(*std::next(m.begin(), 8) == V(3, 2)); assert(m.get_allocator() == a); } #endif diff --git a/libcxx/test/std/containers/associative/multimap/multimap.cons/iter_iter_comp.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.cons/iter_iter_comp.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.cons/iter_iter_comp.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.cons/iter_iter_comp.pass.cpp @@ -43,14 +43,14 @@ assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(1, 1.5)); - assert(*next(m.begin(), 2) == V(1, 2)); - assert(*next(m.begin(), 3) == V(2, 1)); - assert(*next(m.begin(), 4) == V(2, 1.5)); - assert(*next(m.begin(), 5) == V(2, 2)); - assert(*next(m.begin(), 6) == V(3, 1)); - assert(*next(m.begin(), 7) == V(3, 1.5)); - assert(*next(m.begin(), 8) == V(3, 2)); + assert(*std::next(m.begin()) == V(1, 1.5)); + assert(*std::next(m.begin(), 2) == V(1, 2)); + assert(*std::next(m.begin(), 3) == V(2, 1)); + assert(*std::next(m.begin(), 4) == V(2, 1.5)); + assert(*std::next(m.begin(), 5) == V(2, 2)); + assert(*std::next(m.begin(), 6) == V(3, 1)); + assert(*std::next(m.begin(), 7) == V(3, 1.5)); + assert(*std::next(m.begin(), 8) == V(3, 2)); } #if TEST_STD_VER >= 11 { @@ -73,14 +73,14 @@ assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(1, 1.5)); - assert(*next(m.begin(), 2) == V(1, 2)); - assert(*next(m.begin(), 3) == V(2, 1)); - assert(*next(m.begin(), 4) == V(2, 1.5)); - assert(*next(m.begin(), 5) == V(2, 2)); - assert(*next(m.begin(), 6) == V(3, 1)); - assert(*next(m.begin(), 7) == V(3, 1.5)); - assert(*next(m.begin(), 8) == V(3, 2)); + assert(*std::next(m.begin()) == V(1, 1.5)); + assert(*std::next(m.begin(), 2) == V(1, 2)); + assert(*std::next(m.begin(), 3) == V(2, 1)); + assert(*std::next(m.begin(), 4) == V(2, 1.5)); + assert(*std::next(m.begin(), 5) == V(2, 2)); + assert(*std::next(m.begin(), 6) == V(3, 1)); + assert(*std::next(m.begin(), 7) == V(3, 1.5)); + assert(*std::next(m.begin(), 8) == V(3, 2)); } #endif diff --git a/libcxx/test/std/containers/associative/multimap/multimap.cons/iter_iter_comp_alloc.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.cons/iter_iter_comp_alloc.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.cons/iter_iter_comp_alloc.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.cons/iter_iter_comp_alloc.pass.cpp @@ -46,14 +46,14 @@ assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(1, 1.5)); - assert(*next(m.begin(), 2) == V(1, 2)); - assert(*next(m.begin(), 3) == V(2, 1)); - assert(*next(m.begin(), 4) == V(2, 1.5)); - assert(*next(m.begin(), 5) == V(2, 2)); - assert(*next(m.begin(), 6) == V(3, 1)); - assert(*next(m.begin(), 7) == V(3, 1.5)); - assert(*next(m.begin(), 8) == V(3, 2)); + assert(*std::next(m.begin()) == V(1, 1.5)); + assert(*std::next(m.begin(), 2) == V(1, 2)); + assert(*std::next(m.begin(), 3) == V(2, 1)); + assert(*std::next(m.begin(), 4) == V(2, 1.5)); + assert(*std::next(m.begin(), 5) == V(2, 2)); + assert(*std::next(m.begin(), 6) == V(3, 1)); + assert(*std::next(m.begin(), 7) == V(3, 1.5)); + assert(*std::next(m.begin(), 8) == V(3, 2)); } #if TEST_STD_VER >= 11 { @@ -78,14 +78,14 @@ assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(1, 1.5)); - assert(*next(m.begin(), 2) == V(1, 2)); - assert(*next(m.begin(), 3) == V(2, 1)); - assert(*next(m.begin(), 4) == V(2, 1.5)); - assert(*next(m.begin(), 5) == V(2, 2)); - assert(*next(m.begin(), 6) == V(3, 1)); - assert(*next(m.begin(), 7) == V(3, 1.5)); - assert(*next(m.begin(), 8) == V(3, 2)); + assert(*std::next(m.begin()) == V(1, 1.5)); + assert(*std::next(m.begin(), 2) == V(1, 2)); + assert(*std::next(m.begin(), 3) == V(2, 1)); + assert(*std::next(m.begin(), 4) == V(2, 1.5)); + assert(*std::next(m.begin(), 5) == V(2, 2)); + assert(*std::next(m.begin(), 6) == V(3, 1)); + assert(*std::next(m.begin(), 7) == V(3, 1.5)); + assert(*std::next(m.begin(), 8) == V(3, 2)); } { typedef std::pair V; @@ -109,14 +109,14 @@ assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(1, 1.5)); - assert(*next(m.begin(), 2) == V(1, 2)); - assert(*next(m.begin(), 3) == V(2, 1)); - assert(*next(m.begin(), 4) == V(2, 1.5)); - assert(*next(m.begin(), 5) == V(2, 2)); - assert(*next(m.begin(), 6) == V(3, 1)); - assert(*next(m.begin(), 7) == V(3, 1.5)); - assert(*next(m.begin(), 8) == V(3, 2)); + assert(*std::next(m.begin()) == V(1, 1.5)); + assert(*std::next(m.begin(), 2) == V(1, 2)); + assert(*std::next(m.begin(), 3) == V(2, 1)); + assert(*std::next(m.begin(), 4) == V(2, 1.5)); + assert(*std::next(m.begin(), 5) == V(2, 2)); + assert(*std::next(m.begin(), 6) == V(3, 1)); + assert(*std::next(m.begin(), 7) == V(3, 1.5)); + assert(*std::next(m.begin(), 8) == V(3, 2)); } #endif diff --git a/libcxx/test/std/containers/associative/multimap/multimap.cons/move.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.cons/move.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.cons/move.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.cons/move.pass.cpp @@ -62,14 +62,14 @@ assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(1, 1.5)); - assert(*next(m.begin(), 2) == V(1, 2)); - assert(*next(m.begin(), 3) == V(2, 1)); - assert(*next(m.begin(), 4) == V(2, 1.5)); - assert(*next(m.begin(), 5) == V(2, 2)); - assert(*next(m.begin(), 6) == V(3, 1)); - assert(*next(m.begin(), 7) == V(3, 1.5)); - assert(*next(m.begin(), 8) == V(3, 2)); + assert(*std::next(m.begin()) == V(1, 1.5)); + assert(*std::next(m.begin(), 2) == V(1, 2)); + assert(*std::next(m.begin(), 3) == V(2, 1)); + assert(*std::next(m.begin(), 4) == V(2, 1.5)); + assert(*std::next(m.begin(), 5) == V(2, 2)); + assert(*std::next(m.begin(), 6) == V(3, 1)); + assert(*std::next(m.begin(), 7) == V(3, 1.5)); + assert(*std::next(m.begin(), 8) == V(3, 2)); assert(mo.get_allocator() == A(test_alloc_base::moved_value)); assert(mo.key_comp() == C(5)); @@ -113,14 +113,14 @@ assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); assert(*m.begin() == V(1, 1)); - assert(*next(m.begin()) == V(1, 1.5)); - assert(*next(m.begin(), 2) == V(1, 2)); - assert(*next(m.begin(), 3) == V(2, 1)); - assert(*next(m.begin(), 4) == V(2, 1.5)); - assert(*next(m.begin(), 5) == V(2, 2)); - assert(*next(m.begin(), 6) == V(3, 1)); - assert(*next(m.begin(), 7) == V(3, 1.5)); - assert(*next(m.begin(), 8) == V(3, 2)); + assert(*std::next(m.begin()) == V(1, 1.5)); + assert(*std::next(m.begin(), 2) == V(1, 2)); + assert(*std::next(m.begin(), 3) == V(2, 1)); + assert(*std::next(m.begin(), 4) == V(2, 1.5)); + assert(*std::next(m.begin(), 5) == V(2, 2)); + assert(*std::next(m.begin(), 6) == V(3, 1)); + assert(*std::next(m.begin(), 7) == V(3, 1.5)); + assert(*std::next(m.begin(), 8) == V(3, 2)); assert(mo.get_allocator() == A()); assert(mo.key_comp() == C(5)); diff --git a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/emplace.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/emplace.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/emplace.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/emplace.pass.cpp @@ -38,17 +38,17 @@ assert(DefaultOnly::count == 1); r = m.emplace(std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 2); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == DefaultOnly()); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == DefaultOnly()); assert(DefaultOnly::count == 2); r = m.emplace(std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); assert(m.size() == 3); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == DefaultOnly()); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == DefaultOnly()); assert(DefaultOnly::count == 3); } assert(DefaultOnly::count == 0); @@ -70,7 +70,7 @@ assert(m.begin()->second == Emplaceable(2, 3.5)); r = m.emplace(std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple(3, 3.5)); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 3); assert(r->first == 1); assert(r->second == Emplaceable(3, 3.5)); @@ -98,17 +98,17 @@ assert(DefaultOnly::count == 1); r = m.emplace(std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 2); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == DefaultOnly()); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == DefaultOnly()); assert(DefaultOnly::count == 2); r = m.emplace(std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); assert(m.size() == 3); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == DefaultOnly()); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == DefaultOnly()); assert(DefaultOnly::count == 3); } assert(DefaultOnly::count == 0); @@ -130,7 +130,7 @@ assert(m.begin()->second == Emplaceable(2, 3.5)); r = m.emplace(std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple(3, 3.5)); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 3); assert(r->first == 1); assert(r->second == Emplaceable(3, 3.5)); diff --git a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/emplace_hint.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/emplace_hint.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/emplace_hint.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/emplace_hint.pass.cpp @@ -39,18 +39,18 @@ r = m.emplace_hint(m.cend(), std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 2); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == DefaultOnly()); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == DefaultOnly()); assert(DefaultOnly::count == 2); r = m.emplace_hint(m.cend(), std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); assert(m.size() == 3); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == DefaultOnly()); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == DefaultOnly()); assert(DefaultOnly::count == 3); } assert(DefaultOnly::count == 0); @@ -104,18 +104,18 @@ r = m.emplace_hint(m.cend(), std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 2); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == DefaultOnly()); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == DefaultOnly()); assert(DefaultOnly::count == 2); r = m.emplace_hint(m.cend(), std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple()); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); assert(m.size() == 3); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == DefaultOnly()); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == DefaultOnly()); assert(DefaultOnly::count == 3); } assert(DefaultOnly::count == 0); diff --git a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/erase_iter.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/erase_iter.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/erase_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/erase_iter.pass.cpp @@ -46,109 +46,109 @@ }; M m(ar, ar + sizeof(ar)/sizeof(ar[0])); assert(m.size() == 9); - I i = m.erase(next(m.cbegin(), 3)); + I i = m.erase(std::next(m.cbegin(), 3)); assert(m.size() == 8); - assert(i == next(m.begin(), 3)); + assert(i == std::next(m.begin(), 3)); assert(m.begin()->first == 1); assert(m.begin()->second == 1); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == 1.5); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == 2); - assert(next(m.begin(), 3)->first == 2); - assert(next(m.begin(), 3)->second == 1.5); - assert(next(m.begin(), 4)->first == 2); - assert(next(m.begin(), 4)->second == 2); - assert(next(m.begin(), 5)->first == 3); - assert(next(m.begin(), 5)->second == 1); - assert(next(m.begin(), 6)->first == 3); - assert(next(m.begin(), 6)->second == 1.5); - assert(next(m.begin(), 7)->first == 3); - assert(next(m.begin(), 7)->second == 2); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == 1.5); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == 2); + assert(std::next(m.begin(), 3)->first == 2); + assert(std::next(m.begin(), 3)->second == 1.5); + assert(std::next(m.begin(), 4)->first == 2); + assert(std::next(m.begin(), 4)->second == 2); + assert(std::next(m.begin(), 5)->first == 3); + assert(std::next(m.begin(), 5)->second == 1); + assert(std::next(m.begin(), 6)->first == 3); + assert(std::next(m.begin(), 6)->second == 1.5); + assert(std::next(m.begin(), 7)->first == 3); + assert(std::next(m.begin(), 7)->second == 2); - i = m.erase(next(m.cbegin(), 0)); + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 7); assert(i == m.begin()); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1.5); - assert(next(m.begin(), 1)->first == 1); - assert(next(m.begin(), 1)->second == 2); - assert(next(m.begin(), 2)->first == 2); - assert(next(m.begin(), 2)->second == 1.5); - assert(next(m.begin(), 3)->first == 2); - assert(next(m.begin(), 3)->second == 2); - assert(next(m.begin(), 4)->first == 3); - assert(next(m.begin(), 4)->second == 1); - assert(next(m.begin(), 5)->first == 3); - assert(next(m.begin(), 5)->second == 1.5); - assert(next(m.begin(), 6)->first == 3); - assert(next(m.begin(), 6)->second == 2); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 1)->first == 1); + assert(std::next(m.begin(), 1)->second == 2); + assert(std::next(m.begin(), 2)->first == 2); + assert(std::next(m.begin(), 2)->second == 1.5); + assert(std::next(m.begin(), 3)->first == 2); + assert(std::next(m.begin(), 3)->second == 2); + assert(std::next(m.begin(), 4)->first == 3); + assert(std::next(m.begin(), 4)->second == 1); + assert(std::next(m.begin(), 5)->first == 3); + assert(std::next(m.begin(), 5)->second == 1.5); + assert(std::next(m.begin(), 6)->first == 3); + assert(std::next(m.begin(), 6)->second == 2); - i = m.erase(next(m.cbegin(), 5)); + i = m.erase(std::next(m.cbegin(), 5)); assert(m.size() == 6); - assert(i == prev(m.end())); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1.5); - assert(next(m.begin(), 1)->first == 1); - assert(next(m.begin(), 1)->second == 2); - assert(next(m.begin(), 2)->first == 2); - assert(next(m.begin(), 2)->second == 1.5); - assert(next(m.begin(), 3)->first == 2); - assert(next(m.begin(), 3)->second == 2); - assert(next(m.begin(), 4)->first == 3); - assert(next(m.begin(), 4)->second == 1); - assert(next(m.begin(), 5)->first == 3); - assert(next(m.begin(), 5)->second == 2); + assert(i == std::prev(m.end())); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 1)->first == 1); + assert(std::next(m.begin(), 1)->second == 2); + assert(std::next(m.begin(), 2)->first == 2); + assert(std::next(m.begin(), 2)->second == 1.5); + assert(std::next(m.begin(), 3)->first == 2); + assert(std::next(m.begin(), 3)->second == 2); + assert(std::next(m.begin(), 4)->first == 3); + assert(std::next(m.begin(), 4)->second == 1); + assert(std::next(m.begin(), 5)->first == 3); + assert(std::next(m.begin(), 5)->second == 2); - i = m.erase(next(m.cbegin(), 1)); + i = m.erase(std::next(m.cbegin(), 1)); assert(m.size() == 5); - assert(i == next(m.begin())); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1.5); - assert(next(m.begin(), 1)->first == 2); - assert(next(m.begin(), 1)->second == 1.5); - assert(next(m.begin(), 2)->first == 2); - assert(next(m.begin(), 2)->second == 2); - assert(next(m.begin(), 3)->first == 3); - assert(next(m.begin(), 3)->second == 1); - assert(next(m.begin(), 4)->first == 3); - assert(next(m.begin(), 4)->second == 2); + assert(i == std::next(m.begin())); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 1)->first == 2); + assert(std::next(m.begin(), 1)->second == 1.5); + assert(std::next(m.begin(), 2)->first == 2); + assert(std::next(m.begin(), 2)->second == 2); + assert(std::next(m.begin(), 3)->first == 3); + assert(std::next(m.begin(), 3)->second == 1); + assert(std::next(m.begin(), 4)->first == 3); + assert(std::next(m.begin(), 4)->second == 2); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 4); - assert(i == next(m.begin(), 2)); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1.5); - assert(next(m.begin(), 1)->first == 2); - assert(next(m.begin(), 1)->second == 1.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 1); - assert(next(m.begin(), 3)->first == 3); - assert(next(m.begin(), 3)->second == 2); + assert(i == std::next(m.begin(), 2)); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 1)->first == 2); + assert(std::next(m.begin(), 1)->second == 1.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 1); + assert(std::next(m.begin(), 3)->first == 3); + assert(std::next(m.begin(), 3)->second == 2); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 3); - assert(i == next(m.begin(), 2)); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1.5); - assert(next(m.begin(), 1)->first == 2); - assert(next(m.begin(), 1)->second == 1.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 2); + assert(i == std::next(m.begin(), 2)); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 1)->first == 2); + assert(std::next(m.begin(), 1)->second == 1.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 2); - i = m.erase(next(m.cbegin(), 0)); + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 2); - assert(i == next(m.begin(), 0)); - assert(next(m.begin(), 0)->first == 2); - assert(next(m.begin(), 0)->second == 1.5); - assert(next(m.begin(), 1)->first == 3); - assert(next(m.begin(), 1)->second == 2); + assert(i == std::next(m.begin(), 0)); + assert(std::next(m.begin(), 0)->first == 2); + assert(std::next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 1)->first == 3); + assert(std::next(m.begin(), 1)->second == 2); - i = m.erase(next(m.cbegin(), 1)); + i = m.erase(std::next(m.cbegin(), 1)); assert(m.size() == 1); assert(i == m.end()); - assert(next(m.begin(), 0)->first == 2); - assert(next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 0)->first == 2); + assert(std::next(m.begin(), 0)->second == 1.5); i = m.erase(m.cbegin()); assert(m.size() == 0); @@ -174,109 +174,109 @@ }; M m(ar, ar + sizeof(ar)/sizeof(ar[0])); assert(m.size() == 9); - I i = m.erase(next(m.cbegin(), 3)); + I i = m.erase(std::next(m.cbegin(), 3)); assert(m.size() == 8); - assert(i == next(m.begin(), 3)); + assert(i == std::next(m.begin(), 3)); assert(m.begin()->first == 1); assert(m.begin()->second == 1); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == 1.5); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == 2); - assert(next(m.begin(), 3)->first == 2); - assert(next(m.begin(), 3)->second == 1.5); - assert(next(m.begin(), 4)->first == 2); - assert(next(m.begin(), 4)->second == 2); - assert(next(m.begin(), 5)->first == 3); - assert(next(m.begin(), 5)->second == 1); - assert(next(m.begin(), 6)->first == 3); - assert(next(m.begin(), 6)->second == 1.5); - assert(next(m.begin(), 7)->first == 3); - assert(next(m.begin(), 7)->second == 2); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == 1.5); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == 2); + assert(std::next(m.begin(), 3)->first == 2); + assert(std::next(m.begin(), 3)->second == 1.5); + assert(std::next(m.begin(), 4)->first == 2); + assert(std::next(m.begin(), 4)->second == 2); + assert(std::next(m.begin(), 5)->first == 3); + assert(std::next(m.begin(), 5)->second == 1); + assert(std::next(m.begin(), 6)->first == 3); + assert(std::next(m.begin(), 6)->second == 1.5); + assert(std::next(m.begin(), 7)->first == 3); + assert(std::next(m.begin(), 7)->second == 2); - i = m.erase(next(m.cbegin(), 0)); + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 7); assert(i == m.begin()); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1.5); - assert(next(m.begin(), 1)->first == 1); - assert(next(m.begin(), 1)->second == 2); - assert(next(m.begin(), 2)->first == 2); - assert(next(m.begin(), 2)->second == 1.5); - assert(next(m.begin(), 3)->first == 2); - assert(next(m.begin(), 3)->second == 2); - assert(next(m.begin(), 4)->first == 3); - assert(next(m.begin(), 4)->second == 1); - assert(next(m.begin(), 5)->first == 3); - assert(next(m.begin(), 5)->second == 1.5); - assert(next(m.begin(), 6)->first == 3); - assert(next(m.begin(), 6)->second == 2); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 1)->first == 1); + assert(std::next(m.begin(), 1)->second == 2); + assert(std::next(m.begin(), 2)->first == 2); + assert(std::next(m.begin(), 2)->second == 1.5); + assert(std::next(m.begin(), 3)->first == 2); + assert(std::next(m.begin(), 3)->second == 2); + assert(std::next(m.begin(), 4)->first == 3); + assert(std::next(m.begin(), 4)->second == 1); + assert(std::next(m.begin(), 5)->first == 3); + assert(std::next(m.begin(), 5)->second == 1.5); + assert(std::next(m.begin(), 6)->first == 3); + assert(std::next(m.begin(), 6)->second == 2); - i = m.erase(next(m.cbegin(), 5)); + i = m.erase(std::next(m.cbegin(), 5)); assert(m.size() == 6); - assert(i == prev(m.end())); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1.5); - assert(next(m.begin(), 1)->first == 1); - assert(next(m.begin(), 1)->second == 2); - assert(next(m.begin(), 2)->first == 2); - assert(next(m.begin(), 2)->second == 1.5); - assert(next(m.begin(), 3)->first == 2); - assert(next(m.begin(), 3)->second == 2); - assert(next(m.begin(), 4)->first == 3); - assert(next(m.begin(), 4)->second == 1); - assert(next(m.begin(), 5)->first == 3); - assert(next(m.begin(), 5)->second == 2); + assert(i == std::prev(m.end())); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 1)->first == 1); + assert(std::next(m.begin(), 1)->second == 2); + assert(std::next(m.begin(), 2)->first == 2); + assert(std::next(m.begin(), 2)->second == 1.5); + assert(std::next(m.begin(), 3)->first == 2); + assert(std::next(m.begin(), 3)->second == 2); + assert(std::next(m.begin(), 4)->first == 3); + assert(std::next(m.begin(), 4)->second == 1); + assert(std::next(m.begin(), 5)->first == 3); + assert(std::next(m.begin(), 5)->second == 2); - i = m.erase(next(m.cbegin(), 1)); + i = m.erase(std::next(m.cbegin(), 1)); assert(m.size() == 5); - assert(i == next(m.begin())); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1.5); - assert(next(m.begin(), 1)->first == 2); - assert(next(m.begin(), 1)->second == 1.5); - assert(next(m.begin(), 2)->first == 2); - assert(next(m.begin(), 2)->second == 2); - assert(next(m.begin(), 3)->first == 3); - assert(next(m.begin(), 3)->second == 1); - assert(next(m.begin(), 4)->first == 3); - assert(next(m.begin(), 4)->second == 2); + assert(i == std::next(m.begin())); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 1)->first == 2); + assert(std::next(m.begin(), 1)->second == 1.5); + assert(std::next(m.begin(), 2)->first == 2); + assert(std::next(m.begin(), 2)->second == 2); + assert(std::next(m.begin(), 3)->first == 3); + assert(std::next(m.begin(), 3)->second == 1); + assert(std::next(m.begin(), 4)->first == 3); + assert(std::next(m.begin(), 4)->second == 2); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 4); - assert(i == next(m.begin(), 2)); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1.5); - assert(next(m.begin(), 1)->first == 2); - assert(next(m.begin(), 1)->second == 1.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 1); - assert(next(m.begin(), 3)->first == 3); - assert(next(m.begin(), 3)->second == 2); + assert(i == std::next(m.begin(), 2)); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 1)->first == 2); + assert(std::next(m.begin(), 1)->second == 1.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 1); + assert(std::next(m.begin(), 3)->first == 3); + assert(std::next(m.begin(), 3)->second == 2); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 3); - assert(i == next(m.begin(), 2)); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1.5); - assert(next(m.begin(), 1)->first == 2); - assert(next(m.begin(), 1)->second == 1.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 2); + assert(i == std::next(m.begin(), 2)); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 1)->first == 2); + assert(std::next(m.begin(), 1)->second == 1.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 2); - i = m.erase(next(m.cbegin(), 0)); + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 2); - assert(i == next(m.begin(), 0)); - assert(next(m.begin(), 0)->first == 2); - assert(next(m.begin(), 0)->second == 1.5); - assert(next(m.begin(), 1)->first == 3); - assert(next(m.begin(), 1)->second == 2); + assert(i == std::next(m.begin(), 0)); + assert(std::next(m.begin(), 0)->first == 2); + assert(std::next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 1)->first == 3); + assert(std::next(m.begin(), 1)->second == 2); - i = m.erase(next(m.cbegin(), 1)); + i = m.erase(std::next(m.cbegin(), 1)); assert(m.size() == 1); assert(i == m.end()); - assert(next(m.begin(), 0)->first == 2); - assert(next(m.begin(), 0)->second == 1.5); + assert(std::next(m.begin(), 0)->first == 2); + assert(std::next(m.begin(), 0)->second == 1.5); i = m.erase(m.cbegin()); assert(m.size() == 0); diff --git a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/erase_iter_iter.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/erase_iter_iter.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/erase_iter_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/erase_iter_iter.pass.cpp @@ -42,44 +42,44 @@ assert(i == m.begin()); assert(m.begin()->first == 1); assert(m.begin()->second == 1.5); - assert(next(m.begin())->first == 2); - assert(next(m.begin())->second == 2.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 3.5); - assert(next(m.begin(), 3)->first == 4); - assert(next(m.begin(), 3)->second == 4.5); - assert(next(m.begin(), 4)->first == 5); - assert(next(m.begin(), 4)->second == 5.5); - assert(next(m.begin(), 5)->first == 6); - assert(next(m.begin(), 5)->second == 6.5); - assert(next(m.begin(), 6)->first == 7); - assert(next(m.begin(), 6)->second == 7.5); - assert(next(m.begin(), 7)->first == 8); - assert(next(m.begin(), 7)->second == 8.5); + assert(std::next(m.begin())->first == 2); + assert(std::next(m.begin())->second == 2.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 3.5); + assert(std::next(m.begin(), 3)->first == 4); + assert(std::next(m.begin(), 3)->second == 4.5); + assert(std::next(m.begin(), 4)->first == 5); + assert(std::next(m.begin(), 4)->second == 5.5); + assert(std::next(m.begin(), 5)->first == 6); + assert(std::next(m.begin(), 5)->second == 6.5); + assert(std::next(m.begin(), 6)->first == 7); + assert(std::next(m.begin(), 6)->second == 7.5); + assert(std::next(m.begin(), 7)->first == 8); + assert(std::next(m.begin(), 7)->second == 8.5); - i = m.erase(m.cbegin(), next(m.cbegin(), 2)); + i = m.erase(m.cbegin(), std::next(m.cbegin(), 2)); assert(m.size() == 6); assert(i == m.begin()); - assert(next(m.begin(), 0)->first == 3); - assert(next(m.begin(), 0)->second == 3.5); - assert(next(m.begin(), 1)->first == 4); - assert(next(m.begin(), 1)->second == 4.5); - assert(next(m.begin(), 2)->first == 5); - assert(next(m.begin(), 2)->second == 5.5); - assert(next(m.begin(), 3)->first == 6); - assert(next(m.begin(), 3)->second == 6.5); - assert(next(m.begin(), 4)->first == 7); - assert(next(m.begin(), 4)->second == 7.5); - assert(next(m.begin(), 5)->first == 8); - assert(next(m.begin(), 5)->second == 8.5); + assert(std::next(m.begin(), 0)->first == 3); + assert(std::next(m.begin(), 0)->second == 3.5); + assert(std::next(m.begin(), 1)->first == 4); + assert(std::next(m.begin(), 1)->second == 4.5); + assert(std::next(m.begin(), 2)->first == 5); + assert(std::next(m.begin(), 2)->second == 5.5); + assert(std::next(m.begin(), 3)->first == 6); + assert(std::next(m.begin(), 3)->second == 6.5); + assert(std::next(m.begin(), 4)->first == 7); + assert(std::next(m.begin(), 4)->second == 7.5); + assert(std::next(m.begin(), 5)->first == 8); + assert(std::next(m.begin(), 5)->second == 8.5); - i = m.erase(next(m.cbegin(), 2), next(m.cbegin(), 6)); + i = m.erase(std::next(m.cbegin(), 2), std::next(m.cbegin(), 6)); assert(m.size() == 2); - assert(i == next(m.begin(), 2)); - assert(next(m.begin(), 0)->first == 3); - assert(next(m.begin(), 0)->second == 3.5); - assert(next(m.begin(), 1)->first == 4); - assert(next(m.begin(), 1)->second == 4.5); + assert(i == std::next(m.begin(), 2)); + assert(std::next(m.begin(), 0)->first == 3); + assert(std::next(m.begin(), 0)->second == 3.5); + assert(std::next(m.begin(), 1)->first == 4); + assert(std::next(m.begin(), 1)->second == 4.5); i = m.erase(m.cbegin(), m.cend()); assert(m.size() == 0); @@ -109,44 +109,44 @@ assert(i == m.begin()); assert(m.begin()->first == 1); assert(m.begin()->second == 1.5); - assert(next(m.begin())->first == 2); - assert(next(m.begin())->second == 2.5); - assert(next(m.begin(), 2)->first == 3); - assert(next(m.begin(), 2)->second == 3.5); - assert(next(m.begin(), 3)->first == 4); - assert(next(m.begin(), 3)->second == 4.5); - assert(next(m.begin(), 4)->first == 5); - assert(next(m.begin(), 4)->second == 5.5); - assert(next(m.begin(), 5)->first == 6); - assert(next(m.begin(), 5)->second == 6.5); - assert(next(m.begin(), 6)->first == 7); - assert(next(m.begin(), 6)->second == 7.5); - assert(next(m.begin(), 7)->first == 8); - assert(next(m.begin(), 7)->second == 8.5); + assert(std::next(m.begin())->first == 2); + assert(std::next(m.begin())->second == 2.5); + assert(std::next(m.begin(), 2)->first == 3); + assert(std::next(m.begin(), 2)->second == 3.5); + assert(std::next(m.begin(), 3)->first == 4); + assert(std::next(m.begin(), 3)->second == 4.5); + assert(std::next(m.begin(), 4)->first == 5); + assert(std::next(m.begin(), 4)->second == 5.5); + assert(std::next(m.begin(), 5)->first == 6); + assert(std::next(m.begin(), 5)->second == 6.5); + assert(std::next(m.begin(), 6)->first == 7); + assert(std::next(m.begin(), 6)->second == 7.5); + assert(std::next(m.begin(), 7)->first == 8); + assert(std::next(m.begin(), 7)->second == 8.5); - i = m.erase(m.cbegin(), next(m.cbegin(), 2)); + i = m.erase(m.cbegin(), std::next(m.cbegin(), 2)); assert(m.size() == 6); assert(i == m.begin()); - assert(next(m.begin(), 0)->first == 3); - assert(next(m.begin(), 0)->second == 3.5); - assert(next(m.begin(), 1)->first == 4); - assert(next(m.begin(), 1)->second == 4.5); - assert(next(m.begin(), 2)->first == 5); - assert(next(m.begin(), 2)->second == 5.5); - assert(next(m.begin(), 3)->first == 6); - assert(next(m.begin(), 3)->second == 6.5); - assert(next(m.begin(), 4)->first == 7); - assert(next(m.begin(), 4)->second == 7.5); - assert(next(m.begin(), 5)->first == 8); - assert(next(m.begin(), 5)->second == 8.5); + assert(std::next(m.begin(), 0)->first == 3); + assert(std::next(m.begin(), 0)->second == 3.5); + assert(std::next(m.begin(), 1)->first == 4); + assert(std::next(m.begin(), 1)->second == 4.5); + assert(std::next(m.begin(), 2)->first == 5); + assert(std::next(m.begin(), 2)->second == 5.5); + assert(std::next(m.begin(), 3)->first == 6); + assert(std::next(m.begin(), 3)->second == 6.5); + assert(std::next(m.begin(), 4)->first == 7); + assert(std::next(m.begin(), 4)->second == 7.5); + assert(std::next(m.begin(), 5)->first == 8); + assert(std::next(m.begin(), 5)->second == 8.5); - i = m.erase(next(m.cbegin(), 2), next(m.cbegin(), 6)); + i = m.erase(std::next(m.cbegin(), 2), std::next(m.cbegin(), 6)); assert(m.size() == 2); - assert(i == next(m.begin(), 2)); - assert(next(m.begin(), 0)->first == 3); - assert(next(m.begin(), 0)->second == 3.5); - assert(next(m.begin(), 1)->first == 4); - assert(next(m.begin(), 1)->second == 4.5); + assert(i == std::next(m.begin(), 2)); + assert(std::next(m.begin(), 0)->first == 3); + assert(std::next(m.begin(), 0)->second == 3.5); + assert(std::next(m.begin(), 1)->first == 4); + assert(std::next(m.begin(), 1)->second == 4.5); i = m.erase(m.cbegin(), m.cend()); assert(m.size() == 0); diff --git a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/erase_key.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/erase_key.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/erase_key.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/erase_key.pass.cpp @@ -41,44 +41,44 @@ I i = m.erase(2); assert(m.size() == 6); assert(i == 3); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1); - assert(next(m.begin(), 1)->first == 1); - assert(next(m.begin(), 1)->second == 1.5); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == 2); - assert(next(m.begin(), 3)->first == 3); - assert(next(m.begin(), 3)->second == 1); - assert(next(m.begin(), 4)->first == 3); - assert(next(m.begin(), 4)->second == 1.5); - assert(next(m.begin(), 5)->first == 3); - assert(next(m.begin(), 5)->second == 2); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1); + assert(std::next(m.begin(), 1)->first == 1); + assert(std::next(m.begin(), 1)->second == 1.5); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == 2); + assert(std::next(m.begin(), 3)->first == 3); + assert(std::next(m.begin(), 3)->second == 1); + assert(std::next(m.begin(), 4)->first == 3); + assert(std::next(m.begin(), 4)->second == 1.5); + assert(std::next(m.begin(), 5)->first == 3); + assert(std::next(m.begin(), 5)->second == 2); i = m.erase(2); assert(m.size() == 6); assert(i == 0); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1); - assert(next(m.begin(), 1)->first == 1); - assert(next(m.begin(), 1)->second == 1.5); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == 2); - assert(next(m.begin(), 3)->first == 3); - assert(next(m.begin(), 3)->second == 1); - assert(next(m.begin(), 4)->first == 3); - assert(next(m.begin(), 4)->second == 1.5); - assert(next(m.begin(), 5)->first == 3); - assert(next(m.begin(), 5)->second == 2); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1); + assert(std::next(m.begin(), 1)->first == 1); + assert(std::next(m.begin(), 1)->second == 1.5); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == 2); + assert(std::next(m.begin(), 3)->first == 3); + assert(std::next(m.begin(), 3)->second == 1); + assert(std::next(m.begin(), 4)->first == 3); + assert(std::next(m.begin(), 4)->second == 1.5); + assert(std::next(m.begin(), 5)->first == 3); + assert(std::next(m.begin(), 5)->second == 2); i = m.erase(3); assert(i == 3); assert(m.size() == 3); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1); - assert(next(m.begin(), 1)->first == 1); - assert(next(m.begin(), 1)->second == 1.5); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == 2); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1); + assert(std::next(m.begin(), 1)->first == 1); + assert(std::next(m.begin(), 1)->second == 1.5); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == 2); i = m.erase(1); assert(m.size() == 0); @@ -106,44 +106,44 @@ I i = m.erase(2); assert(m.size() == 6); assert(i == 3); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1); - assert(next(m.begin(), 1)->first == 1); - assert(next(m.begin(), 1)->second == 1.5); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == 2); - assert(next(m.begin(), 3)->first == 3); - assert(next(m.begin(), 3)->second == 1); - assert(next(m.begin(), 4)->first == 3); - assert(next(m.begin(), 4)->second == 1.5); - assert(next(m.begin(), 5)->first == 3); - assert(next(m.begin(), 5)->second == 2); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1); + assert(std::next(m.begin(), 1)->first == 1); + assert(std::next(m.begin(), 1)->second == 1.5); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == 2); + assert(std::next(m.begin(), 3)->first == 3); + assert(std::next(m.begin(), 3)->second == 1); + assert(std::next(m.begin(), 4)->first == 3); + assert(std::next(m.begin(), 4)->second == 1.5); + assert(std::next(m.begin(), 5)->first == 3); + assert(std::next(m.begin(), 5)->second == 2); i = m.erase(2); assert(m.size() == 6); assert(i == 0); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1); - assert(next(m.begin(), 1)->first == 1); - assert(next(m.begin(), 1)->second == 1.5); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == 2); - assert(next(m.begin(), 3)->first == 3); - assert(next(m.begin(), 3)->second == 1); - assert(next(m.begin(), 4)->first == 3); - assert(next(m.begin(), 4)->second == 1.5); - assert(next(m.begin(), 5)->first == 3); - assert(next(m.begin(), 5)->second == 2); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1); + assert(std::next(m.begin(), 1)->first == 1); + assert(std::next(m.begin(), 1)->second == 1.5); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == 2); + assert(std::next(m.begin(), 3)->first == 3); + assert(std::next(m.begin(), 3)->second == 1); + assert(std::next(m.begin(), 4)->first == 3); + assert(std::next(m.begin(), 4)->second == 1.5); + assert(std::next(m.begin(), 5)->first == 3); + assert(std::next(m.begin(), 5)->second == 2); i = m.erase(3); assert(i == 3); assert(m.size() == 3); - assert(next(m.begin(), 0)->first == 1); - assert(next(m.begin(), 0)->second == 1); - assert(next(m.begin(), 1)->first == 1); - assert(next(m.begin(), 1)->second == 1.5); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == 2); + assert(std::next(m.begin(), 0)->first == 1); + assert(std::next(m.begin(), 0)->second == 1); + assert(std::next(m.begin(), 1)->first == 1); + assert(std::next(m.begin(), 1)->second == 1.5); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == 2); i = m.erase(1); assert(m.size() == 0); diff --git a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_cv.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_cv.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_cv.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_cv.pass.cpp @@ -40,14 +40,14 @@ const VT v3(3, 3.5); r = m.insert(v3); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(r->first == 3); assert(r->second == 3.5); const VT v4(3, 3.5); r = m.insert(v4); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 4); assert(r->first == 3); assert(r->second == 3.5); diff --git a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_iter_cv.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_iter_cv.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_iter_cv.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_iter_cv.pass.cpp @@ -41,14 +41,14 @@ const VT v3(3, 3.5); r = m.insert(m.end(), v3); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(r->first == 3); assert(r->second == 3.5); const VT v4(3, 4.5); - r = m.insert(prev(m.end()), v4); - assert(r == prev(m.end(), 2)); + r = m.insert(std::prev(m.end()), v4); + assert(r == std::prev(m.end(), 2)); assert(m.size() == 4); assert(r->first == 3); assert(r->second == 4.5); diff --git a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp @@ -42,22 +42,22 @@ assert(m.size() == 9); assert(m.begin()->first == 1); assert(m.begin()->second == 1); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == 1.5); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == 2); - assert(next(m.begin(), 3)->first == 2); - assert(next(m.begin(), 3)->second == 1); - assert(next(m.begin(), 4)->first == 2); - assert(next(m.begin(), 4)->second == 1.5); - assert(next(m.begin(), 5)->first == 2); - assert(next(m.begin(), 5)->second == 2); - assert(next(m.begin(), 6)->first == 3); - assert(next(m.begin(), 6)->second == 1); - assert(next(m.begin(), 7)->first == 3); - assert(next(m.begin(), 7)->second == 1.5); - assert(next(m.begin(), 8)->first == 3); - assert(next(m.begin(), 8)->second == 2); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == 1.5); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == 2); + assert(std::next(m.begin(), 3)->first == 2); + assert(std::next(m.begin(), 3)->second == 1); + assert(std::next(m.begin(), 4)->first == 2); + assert(std::next(m.begin(), 4)->second == 1.5); + assert(std::next(m.begin(), 5)->first == 2); + assert(std::next(m.begin(), 5)->second == 2); + assert(std::next(m.begin(), 6)->first == 3); + assert(std::next(m.begin(), 6)->second == 1); + assert(std::next(m.begin(), 7)->first == 3); + assert(std::next(m.begin(), 7)->second == 1.5); + assert(std::next(m.begin(), 8)->first == 3); + assert(std::next(m.begin(), 8)->second == 2); } #if TEST_STD_VER >= 11 { @@ -80,22 +80,22 @@ assert(m.size() == 9); assert(m.begin()->first == 1); assert(m.begin()->second == 1); - assert(next(m.begin())->first == 1); - assert(next(m.begin())->second == 1.5); - assert(next(m.begin(), 2)->first == 1); - assert(next(m.begin(), 2)->second == 2); - assert(next(m.begin(), 3)->first == 2); - assert(next(m.begin(), 3)->second == 1); - assert(next(m.begin(), 4)->first == 2); - assert(next(m.begin(), 4)->second == 1.5); - assert(next(m.begin(), 5)->first == 2); - assert(next(m.begin(), 5)->second == 2); - assert(next(m.begin(), 6)->first == 3); - assert(next(m.begin(), 6)->second == 1); - assert(next(m.begin(), 7)->first == 3); - assert(next(m.begin(), 7)->second == 1.5); - assert(next(m.begin(), 8)->first == 3); - assert(next(m.begin(), 8)->second == 2); + assert(std::next(m.begin())->first == 1); + assert(std::next(m.begin())->second == 1.5); + assert(std::next(m.begin(), 2)->first == 1); + assert(std::next(m.begin(), 2)->second == 2); + assert(std::next(m.begin(), 3)->first == 2); + assert(std::next(m.begin(), 3)->second == 1); + assert(std::next(m.begin(), 4)->first == 2); + assert(std::next(m.begin(), 4)->second == 1.5); + assert(std::next(m.begin(), 5)->first == 2); + assert(std::next(m.begin(), 5)->second == 2); + assert(std::next(m.begin(), 6)->first == 3); + assert(std::next(m.begin(), 6)->second == 1); + assert(std::next(m.begin(), 7)->first == 3); + assert(std::next(m.begin(), 7)->second == 1.5); + assert(std::next(m.begin(), 8)->first == 3); + assert(std::next(m.begin(), 8)->second == 2); } #endif diff --git a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_iter_rv.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_iter_rv.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_iter_rv.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_iter_rv.pass.cpp @@ -42,13 +42,13 @@ assert(r->second == 1); r = m.insert(m.cend(), P(3, 3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(r->first == 3); assert(r->second == 3); r = m.insert(m.cend(), P(3, 2)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 4); assert(r->first == 3); assert(r->second == 2); @@ -84,13 +84,13 @@ assert(r->second == 1); r = m.insert(m.cend(), {3, MoveOnly(3)}); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(r->first == 3); assert(r->second == 3); r = m.insert(m.cend(), {3, MoveOnly(2)}); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 4); assert(r->first == 3); assert(r->second == 2); diff --git a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_rv.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_rv.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_rv.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.modifiers/insert_rv.pass.cpp @@ -42,13 +42,13 @@ assert(r->second == 1); r = m.insert(VT(3, 3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(r->first == 3); assert(r->second == 3); r = m.insert(VT(3, 3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 4); assert(r->first == 3); assert(r->second == 3); @@ -78,13 +78,13 @@ assert(r->second == 1); r = m.insert({3, MoveOnly(3)}); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(r->first == 3); assert(r->second == 3); r = m.insert({3, MoveOnly(3)}); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 4); assert(r->first == 3); assert(r->second == 3); diff --git a/libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range.pass.cpp @@ -46,19 +46,19 @@ assert(r.second == m.begin()); r = m.equal_range(5); assert(r.first == m.begin()); - assert(r.second == next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 9)); r = m.equal_range(10); assert(r.first == m.end()); assert(r.second == m.end()); @@ -83,19 +83,19 @@ assert(r.second == m.begin()); r = m.equal_range(5); assert(r.first == m.begin()); - assert(r.second == next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 9)); r = m.equal_range(10); assert(r.first == m.end()); assert(r.second == m.end()); @@ -124,19 +124,19 @@ assert(r.second == m.begin()); r = m.equal_range(5); assert(r.first == m.begin()); - assert(r.second == next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 9)); r = m.equal_range(10); assert(r.first == m.end()); assert(r.second == m.end()); @@ -161,19 +161,19 @@ assert(r.second == m.begin()); r = m.equal_range(5); assert(r.first == m.begin()); - assert(r.second == next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 9)); r = m.equal_range(10); assert(r.first == m.end()); assert(r.second == m.end()); @@ -203,19 +203,19 @@ assert(r.second == m.begin()); r = m.equal_range(5); assert(r.first == m.begin()); - assert(r.second == next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 9)); r = m.equal_range(10); assert(r.first == m.end()); assert(r.second == m.end()); @@ -225,19 +225,19 @@ assert(r.second == m.begin()); r = m.equal_range(C2Int(5)); assert(r.first == m.begin()); - assert(r.second == next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(C2Int(6)); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(C2Int(7)); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(C2Int(8)); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(C2Int(9)); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 9)); r = m.equal_range(C2Int(10)); assert(r.first == m.end()); assert(r.second == m.end()); @@ -265,19 +265,19 @@ assert(r.second == m.begin()); r = m.equal_range(5); assert(r.first == m.begin()); - assert(r.second == next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 9)); r = m.equal_range(10); assert(r.first == m.end()); assert(r.second == m.end()); diff --git a/libcxx/test/std/containers/associative/multimap/multimap.ops/find.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.ops/find.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.ops/find.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.ops/find.pass.cpp @@ -46,11 +46,11 @@ r = m.find(6); assert(r == m.end()); r = m.find(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(8); assert(r == m.end()); r = m.find(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(10); assert(r == m.end()); } @@ -74,11 +74,11 @@ r = m.find(6); assert(r == m.end()); r = m.find(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(8); assert(r == m.end()); r = m.find(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(10); assert(r == m.end()); } @@ -106,11 +106,11 @@ r = m.find(6); assert(r == m.end()); r = m.find(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(8); assert(r == m.end()); r = m.find(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(10); assert(r == m.end()); } @@ -134,11 +134,11 @@ r = m.find(6); assert(r == m.end()); r = m.find(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(8); assert(r == m.end()); r = m.find(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(10); assert(r == m.end()); } @@ -167,11 +167,11 @@ r = m.find(6); assert(r == m.end()); r = m.find(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(8); assert(r == m.end()); r = m.find(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(10); assert(r == m.end()); @@ -180,11 +180,11 @@ r = m.find(C2Int(6)); assert(r == m.end()); r = m.find(C2Int(7)); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(C2Int(8)); assert(r == m.end()); r = m.find(C2Int(9)); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(C2Int(10)); assert(r == m.end()); } @@ -210,11 +210,11 @@ r = m.find(6); assert(r == m.end()); r = m.find(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(8); assert(r == m.end()); r = m.find(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(10); assert(r == m.end()); } diff --git a/libcxx/test/std/containers/associative/multimap/multimap.ops/lower_bound.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.ops/lower_bound.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.ops/lower_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.ops/lower_bound.pass.cpp @@ -46,13 +46,13 @@ r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(10); assert(r == m.end()); } @@ -76,13 +76,13 @@ r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(10); assert(r == m.end()); } @@ -110,13 +110,13 @@ r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(10); assert(r == m.end()); } @@ -140,13 +140,13 @@ r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(10); assert(r == m.end()); } @@ -174,13 +174,13 @@ r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(10); assert(r == m.end()); @@ -189,13 +189,13 @@ r = m.lower_bound(C2Int(5)); assert(r == m.begin()); r = m.lower_bound(C2Int(6)); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(C2Int(7)); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(C2Int(8)); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(C2Int(9)); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(C2Int(10)); assert(r == m.end()); } @@ -221,13 +221,13 @@ r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(10); assert(r == m.end()); } diff --git a/libcxx/test/std/containers/associative/multimap/multimap.ops/upper_bound.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.ops/upper_bound.pass.cpp --- a/libcxx/test/std/containers/associative/multimap/multimap.ops/upper_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.ops/upper_bound.pass.cpp @@ -44,15 +44,15 @@ R r = m.upper_bound(4); assert(r == m.begin()); r = m.upper_bound(5); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(7); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(9); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); r = m.upper_bound(10); assert(r == m.end()); } @@ -74,15 +74,15 @@ R r = m.upper_bound(4); assert(r == m.begin()); r = m.upper_bound(5); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(7); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(9); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); r = m.upper_bound(10); assert(r == m.end()); } @@ -108,15 +108,15 @@ R r = m.upper_bound(4); assert(r == m.begin()); r = m.upper_bound(5); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(7); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(9); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); r = m.upper_bound(10); assert(r == m.end()); } @@ -138,15 +138,15 @@ R r = m.upper_bound(4); assert(r == m.begin()); r = m.upper_bound(5); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(7); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(9); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); r = m.upper_bound(10); assert(r == m.end()); } @@ -172,30 +172,30 @@ R r = m.upper_bound(4); assert(r == m.begin()); r = m.upper_bound(5); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(7); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(9); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); r = m.upper_bound(10); assert(r == m.end()); r = m.upper_bound(C2Int(4)); assert(r == m.begin()); r = m.upper_bound(C2Int(5)); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(C2Int(6)); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(C2Int(7)); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(C2Int(8)); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(C2Int(9)); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); r = m.upper_bound(C2Int(10)); } @@ -218,15 +218,15 @@ R r = m.upper_bound(4); assert(r == m.begin()); r = m.upper_bound(5); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(7); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(9); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); r = m.upper_bound(10); assert(r == m.end()); } diff --git a/libcxx/test/std/containers/associative/multiset/emplace.pass.cpp b/libcxx/test/std/containers/associative/multiset/emplace.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/emplace.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/emplace.pass.cpp @@ -37,7 +37,7 @@ assert(DefaultOnly::count == 1); r = m.emplace(); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 2); assert(*m.begin() == DefaultOnly()); assert(DefaultOnly::count == 2); @@ -52,11 +52,11 @@ assert(m.size() == 1); assert(*m.begin() == Emplaceable()); r = m.emplace(2, 3.5); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 2); assert(*r == Emplaceable(2, 3.5)); r = m.emplace(2, 3.5); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); assert(m.size() == 3); assert(*r == Emplaceable(2, 3.5)); } diff --git a/libcxx/test/std/containers/associative/multiset/emplace_hint.pass.cpp b/libcxx/test/std/containers/associative/multiset/emplace_hint.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/emplace_hint.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/emplace_hint.pass.cpp @@ -52,11 +52,11 @@ assert(m.size() == 1); assert(*m.begin() == Emplaceable()); r = m.emplace_hint(m.cend(), 2, 3.5); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 2); assert(*r == Emplaceable(2, 3.5)); r = m.emplace_hint(m.cbegin(), 2, 3.5); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 3); assert(*r == Emplaceable(2, 3.5)); } diff --git a/libcxx/test/std/containers/associative/multiset/equal_range.pass.cpp b/libcxx/test/std/containers/associative/multiset/equal_range.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/equal_range.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/equal_range.pass.cpp @@ -41,26 +41,26 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 9)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 9)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 9)); + assert(r.second == std::next(m.begin(), 9)); } { typedef std::pair R; @@ -78,26 +78,26 @@ }; const M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 9)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 9)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 9)); + assert(r.second == std::next(m.begin(), 9)); } } #if TEST_STD_VER >= 11 @@ -120,26 +120,26 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 9)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 9)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 9)); + assert(r.second == std::next(m.begin(), 9)); } { typedef std::pair R; @@ -157,26 +157,26 @@ }; const M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 9)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 9)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 9)); + assert(r.second == std::next(m.begin(), 9)); } } #endif @@ -199,26 +199,26 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 9)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 9)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 9)); + assert(r.second == std::next(m.begin(), 9)); } { @@ -238,26 +238,26 @@ m.insert ( V::make ( 9 )); R r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 9)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 9)); - assert(r.second == next(m.begin(), 9)); + assert(r.first == std::next(m.begin(), 9)); + assert(r.second == std::next(m.begin(), 9)); } #endif diff --git a/libcxx/test/std/containers/associative/multiset/erase_iter.pass.cpp b/libcxx/test/std/containers/associative/multiset/erase_iter.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/erase_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/erase_iter.pass.cpp @@ -45,61 +45,61 @@ }; M m(ar, ar + sizeof(ar)/sizeof(ar[0])); assert(m.size() == 8); - I i = m.erase(next(m.cbegin(), 3)); + I i = m.erase(std::next(m.cbegin(), 3)); assert(m.size() == 7); - assert(i == next(m.begin(), 3)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 5); - assert(*next(m.begin(), 4) == 6); - assert(*next(m.begin(), 5) == 7); - assert(*next(m.begin(), 6) == 8); - - i = m.erase(next(m.cbegin(), 0)); + assert(i == std::next(m.begin(), 3)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 5); + assert(*std::next(m.begin(), 4) == 6); + assert(*std::next(m.begin(), 5) == 7); + assert(*std::next(m.begin(), 6) == 8); + + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 6); assert(i == m.begin()); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 5); - assert(*next(m.begin(), 3) == 6); - assert(*next(m.begin(), 4) == 7); - assert(*next(m.begin(), 5) == 8); - - i = m.erase(next(m.cbegin(), 5)); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 5); + assert(*std::next(m.begin(), 3) == 6); + assert(*std::next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 5) == 8); + + i = m.erase(std::next(m.cbegin(), 5)); assert(m.size() == 5); assert(i == m.end()); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 5); - assert(*next(m.begin(), 3) == 6); - assert(*next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 5); + assert(*std::next(m.begin(), 3) == 6); + assert(*std::next(m.begin(), 4) == 7); - i = m.erase(next(m.cbegin(), 1)); + i = m.erase(std::next(m.cbegin(), 1)); assert(m.size() == 4); - assert(i == next(m.begin())); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); - assert(*next(m.begin(), 2) == 6); - assert(*next(m.begin(), 3) == 7); + assert(i == std::next(m.begin())); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 2) == 6); + assert(*std::next(m.begin(), 3) == 7); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 3); - assert(i == next(m.begin(), 2)); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); - assert(*next(m.begin(), 2) == 7); + assert(i == std::next(m.begin(), 2)); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 2) == 7); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 2); - assert(i == next(m.begin(), 2)); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); + assert(i == std::next(m.begin(), 2)); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); - i = m.erase(next(m.cbegin(), 0)); + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 1); - assert(i == next(m.begin(), 0)); - assert(*next(m.begin(), 0) == 5); + assert(i == std::next(m.begin(), 0)); + assert(*std::next(m.begin(), 0) == 5); i = m.erase(m.cbegin()); assert(m.size() == 0); @@ -124,61 +124,61 @@ }; M m(ar, ar + sizeof(ar)/sizeof(ar[0])); assert(m.size() == 8); - I i = m.erase(next(m.cbegin(), 3)); + I i = m.erase(std::next(m.cbegin(), 3)); assert(m.size() == 7); - assert(i == next(m.begin(), 3)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 5); - assert(*next(m.begin(), 4) == 6); - assert(*next(m.begin(), 5) == 7); - assert(*next(m.begin(), 6) == 8); - - i = m.erase(next(m.cbegin(), 0)); + assert(i == std::next(m.begin(), 3)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 5); + assert(*std::next(m.begin(), 4) == 6); + assert(*std::next(m.begin(), 5) == 7); + assert(*std::next(m.begin(), 6) == 8); + + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 6); assert(i == m.begin()); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 5); - assert(*next(m.begin(), 3) == 6); - assert(*next(m.begin(), 4) == 7); - assert(*next(m.begin(), 5) == 8); - - i = m.erase(next(m.cbegin(), 5)); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 5); + assert(*std::next(m.begin(), 3) == 6); + assert(*std::next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 5) == 8); + + i = m.erase(std::next(m.cbegin(), 5)); assert(m.size() == 5); assert(i == m.end()); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 5); - assert(*next(m.begin(), 3) == 6); - assert(*next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 5); + assert(*std::next(m.begin(), 3) == 6); + assert(*std::next(m.begin(), 4) == 7); - i = m.erase(next(m.cbegin(), 1)); + i = m.erase(std::next(m.cbegin(), 1)); assert(m.size() == 4); - assert(i == next(m.begin())); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); - assert(*next(m.begin(), 2) == 6); - assert(*next(m.begin(), 3) == 7); + assert(i == std::next(m.begin())); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 2) == 6); + assert(*std::next(m.begin(), 3) == 7); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 3); - assert(i == next(m.begin(), 2)); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); - assert(*next(m.begin(), 2) == 7); + assert(i == std::next(m.begin(), 2)); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 2) == 7); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 2); - assert(i == next(m.begin(), 2)); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); + assert(i == std::next(m.begin(), 2)); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); - i = m.erase(next(m.cbegin(), 0)); + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 1); - assert(i == next(m.begin(), 0)); - assert(*next(m.begin(), 0) == 5); + assert(i == std::next(m.begin(), 0)); + assert(*std::next(m.begin(), 0) == 5); i = m.erase(m.cbegin()); assert(m.size() == 0); diff --git a/libcxx/test/std/containers/associative/multiset/erase_iter_iter.pass.cpp b/libcxx/test/std/containers/associative/multiset/erase_iter_iter.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/erase_iter_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/erase_iter_iter.pass.cpp @@ -37,42 +37,42 @@ }; M m(ar, ar + sizeof(ar)/sizeof(ar[0])); assert(m.size() == 8); - I i = m.erase(next(m.cbegin(), 5), next(m.cbegin(), 5)); + I i = m.erase(std::next(m.cbegin(), 5), std::next(m.cbegin(), 5)); assert(m.size() == 8); - assert(i == next(m.begin(), 5)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 4); - assert(*next(m.begin(), 4) == 5); - assert(*next(m.begin(), 5) == 6); - assert(*next(m.begin(), 6) == 7); - assert(*next(m.begin(), 7) == 8); + assert(i == std::next(m.begin(), 5)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 4); + assert(*std::next(m.begin(), 4) == 5); + assert(*std::next(m.begin(), 5) == 6); + assert(*std::next(m.begin(), 6) == 7); + assert(*std::next(m.begin(), 7) == 8); - i = m.erase(next(m.cbegin(), 3), next(m.cbegin(), 4)); + i = m.erase(std::next(m.cbegin(), 3), std::next(m.cbegin(), 4)); assert(m.size() == 7); - assert(i == next(m.begin(), 3)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 5); - assert(*next(m.begin(), 4) == 6); - assert(*next(m.begin(), 5) == 7); - assert(*next(m.begin(), 6) == 8); + assert(i == std::next(m.begin(), 3)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 5); + assert(*std::next(m.begin(), 4) == 6); + assert(*std::next(m.begin(), 5) == 7); + assert(*std::next(m.begin(), 6) == 8); - i = m.erase(next(m.cbegin(), 2), next(m.cbegin(), 5)); + i = m.erase(std::next(m.cbegin(), 2), std::next(m.cbegin(), 5)); assert(m.size() == 4); - assert(i == next(m.begin(), 2)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 7); - assert(*next(m.begin(), 3) == 8); + assert(i == std::next(m.begin(), 2)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 7); + assert(*std::next(m.begin(), 3) == 8); - i = m.erase(next(m.cbegin(), 0), next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 0), std::next(m.cbegin(), 2)); assert(m.size() == 2); - assert(i == next(m.begin(), 0)); - assert(*next(m.begin(), 0) == 7); - assert(*next(m.begin(), 1) == 8); + assert(i == std::next(m.begin(), 0)); + assert(*std::next(m.begin(), 0) == 7); + assert(*std::next(m.begin(), 1) == 8); i = m.erase(m.cbegin(), m.cend()); assert(m.size() == 0); @@ -96,42 +96,42 @@ }; M m(ar, ar + sizeof(ar)/sizeof(ar[0])); assert(m.size() == 8); - I i = m.erase(next(m.cbegin(), 5), next(m.cbegin(), 5)); + I i = m.erase(std::next(m.cbegin(), 5), std::next(m.cbegin(), 5)); assert(m.size() == 8); - assert(i == next(m.begin(), 5)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 4); - assert(*next(m.begin(), 4) == 5); - assert(*next(m.begin(), 5) == 6); - assert(*next(m.begin(), 6) == 7); - assert(*next(m.begin(), 7) == 8); + assert(i == std::next(m.begin(), 5)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 4); + assert(*std::next(m.begin(), 4) == 5); + assert(*std::next(m.begin(), 5) == 6); + assert(*std::next(m.begin(), 6) == 7); + assert(*std::next(m.begin(), 7) == 8); - i = m.erase(next(m.cbegin(), 3), next(m.cbegin(), 4)); + i = m.erase(std::next(m.cbegin(), 3), std::next(m.cbegin(), 4)); assert(m.size() == 7); - assert(i == next(m.begin(), 3)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 5); - assert(*next(m.begin(), 4) == 6); - assert(*next(m.begin(), 5) == 7); - assert(*next(m.begin(), 6) == 8); + assert(i == std::next(m.begin(), 3)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 5); + assert(*std::next(m.begin(), 4) == 6); + assert(*std::next(m.begin(), 5) == 7); + assert(*std::next(m.begin(), 6) == 8); - i = m.erase(next(m.cbegin(), 2), next(m.cbegin(), 5)); + i = m.erase(std::next(m.cbegin(), 2), std::next(m.cbegin(), 5)); assert(m.size() == 4); - assert(i == next(m.begin(), 2)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 7); - assert(*next(m.begin(), 3) == 8); + assert(i == std::next(m.begin(), 2)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 7); + assert(*std::next(m.begin(), 3) == 8); - i = m.erase(next(m.cbegin(), 0), next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 0), std::next(m.cbegin(), 2)); assert(m.size() == 2); - assert(i == next(m.begin(), 0)); - assert(*next(m.begin(), 0) == 7); - assert(*next(m.begin(), 1) == 8); + assert(i == std::next(m.begin(), 0)); + assert(*std::next(m.begin(), 0) == 7); + assert(*std::next(m.begin(), 1) == 8); i = m.erase(m.cbegin(), m.cend()); assert(m.size() == 0); diff --git a/libcxx/test/std/containers/associative/multiset/erase_key.pass.cpp b/libcxx/test/std/containers/associative/multiset/erase_key.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/erase_key.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/erase_key.pass.cpp @@ -41,32 +41,32 @@ I i = m.erase(6); assert(m.size() == 9); assert(i == 0); - assert(*next(m.begin(), 0) == 3); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 5); - assert(*next(m.begin(), 4) == 5); - assert(*next(m.begin(), 5) == 5); - assert(*next(m.begin(), 6) == 7); - assert(*next(m.begin(), 7) == 7); - assert(*next(m.begin(), 8) == 7); + assert(*std::next(m.begin(), 0) == 3); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 5); + assert(*std::next(m.begin(), 4) == 5); + assert(*std::next(m.begin(), 5) == 5); + assert(*std::next(m.begin(), 6) == 7); + assert(*std::next(m.begin(), 7) == 7); + assert(*std::next(m.begin(), 8) == 7); i = m.erase(5); assert(m.size() == 6); assert(i == 3); - assert(*next(m.begin(), 0) == 3); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 7); - assert(*next(m.begin(), 4) == 7); - assert(*next(m.begin(), 5) == 7); + assert(*std::next(m.begin(), 0) == 3); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 7); + assert(*std::next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 5) == 7); i = m.erase(3); assert(m.size() == 3); assert(i == 3); - assert(*next(m.begin(), 0) == 7); - assert(*next(m.begin(), 1) == 7); - assert(*next(m.begin(), 2) == 7); + assert(*std::next(m.begin(), 0) == 7); + assert(*std::next(m.begin(), 1) == 7); + assert(*std::next(m.begin(), 2) == 7); i = m.erase(7); assert(m.size() == 0); @@ -94,32 +94,32 @@ I i = m.erase(6); assert(m.size() == 9); assert(i == 0); - assert(*next(m.begin(), 0) == 3); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 5); - assert(*next(m.begin(), 4) == 5); - assert(*next(m.begin(), 5) == 5); - assert(*next(m.begin(), 6) == 7); - assert(*next(m.begin(), 7) == 7); - assert(*next(m.begin(), 8) == 7); + assert(*std::next(m.begin(), 0) == 3); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 5); + assert(*std::next(m.begin(), 4) == 5); + assert(*std::next(m.begin(), 5) == 5); + assert(*std::next(m.begin(), 6) == 7); + assert(*std::next(m.begin(), 7) == 7); + assert(*std::next(m.begin(), 8) == 7); i = m.erase(5); assert(m.size() == 6); assert(i == 3); - assert(*next(m.begin(), 0) == 3); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 7); - assert(*next(m.begin(), 4) == 7); - assert(*next(m.begin(), 5) == 7); + assert(*std::next(m.begin(), 0) == 3); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 7); + assert(*std::next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 5) == 7); i = m.erase(3); assert(m.size() == 3); assert(i == 3); - assert(*next(m.begin(), 0) == 7); - assert(*next(m.begin(), 1) == 7); - assert(*next(m.begin(), 2) == 7); + assert(*std::next(m.begin(), 0) == 7); + assert(*std::next(m.begin(), 1) == 7); + assert(*std::next(m.begin(), 2) == 7); i = m.erase(7); assert(m.size() == 0); diff --git a/libcxx/test/std/containers/associative/multiset/find.pass.cpp b/libcxx/test/std/containers/associative/multiset/find.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/find.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/find.pass.cpp @@ -42,21 +42,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -75,21 +75,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #if TEST_STD_VER >= 11 @@ -113,21 +113,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -146,21 +146,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #endif @@ -185,21 +185,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { @@ -220,21 +220,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } #endif diff --git a/libcxx/test/std/containers/associative/multiset/insert_cv.pass.cpp b/libcxx/test/std/containers/associative/multiset/insert_cv.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/insert_cv.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/insert_cv.pass.cpp @@ -39,12 +39,12 @@ const VT v3(3); r = m.insert(v3); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); r = m.insert(v3); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 4); assert(*r == 3); } diff --git a/libcxx/test/std/containers/associative/multiset/insert_iter_cv.pass.cpp b/libcxx/test/std/containers/associative/multiset/insert_iter_cv.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/insert_iter_cv.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/insert_iter_cv.pass.cpp @@ -35,12 +35,12 @@ assert(*r == 1); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 4); assert(*r == 3); } @@ -60,12 +60,12 @@ assert(*r == 1); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 4); assert(*r == 3); } diff --git a/libcxx/test/std/containers/associative/multiset/insert_iter_iter.pass.cpp b/libcxx/test/std/containers/associative/multiset/insert_iter_iter.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/insert_iter_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/insert_iter_iter.pass.cpp @@ -41,15 +41,15 @@ m.insert(cpp17_input_iterator(ar), cpp17_input_iterator(ar + sizeof(ar)/sizeof(ar[0]))); assert(m.size() == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); } #if TEST_STD_VER >= 11 { @@ -71,15 +71,15 @@ m.insert(cpp17_input_iterator(ar), cpp17_input_iterator(ar + sizeof(ar)/sizeof(ar[0]))); assert(m.size() == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); } #endif diff --git a/libcxx/test/std/containers/associative/multiset/insert_iter_rv.pass.cpp b/libcxx/test/std/containers/associative/multiset/insert_iter_rv.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/insert_iter_rv.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/insert_iter_rv.pass.cpp @@ -38,12 +38,12 @@ assert(*r == 1); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 4); assert(*r == 3); } @@ -62,12 +62,12 @@ assert(*r == 1); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 4); assert(*r == 3); } diff --git a/libcxx/test/std/containers/associative/multiset/insert_rv.pass.cpp b/libcxx/test/std/containers/associative/multiset/insert_rv.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/insert_rv.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/insert_rv.pass.cpp @@ -38,12 +38,12 @@ assert(*r == 1); r = m.insert(M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); r = m.insert(M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 4); assert(*r == 3); } @@ -62,12 +62,12 @@ assert(*r == 1); r = m.insert(M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); r = m.insert(M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 4); assert(*r == 3); } diff --git a/libcxx/test/std/containers/associative/multiset/lower_bound.pass.cpp b/libcxx/test/std/containers/associative/multiset/lower_bound.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/lower_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/lower_bound.pass.cpp @@ -41,19 +41,19 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(5); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(11); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); } { typedef M::const_iterator R; @@ -71,19 +71,19 @@ }; const M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(5); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(11); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); } } #if TEST_STD_VER >= 11 @@ -106,19 +106,19 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(5); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(11); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); } { typedef M::const_iterator R; @@ -136,19 +136,19 @@ }; const M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(5); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(11); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); } } #endif @@ -173,19 +173,19 @@ M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(5); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(11); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); } { @@ -205,19 +205,19 @@ m.insert ( V::make ( 9 )); R r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(5); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(7); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(9); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(11); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); } #endif diff --git a/libcxx/test/std/containers/associative/multiset/multiset.cons/copy.pass.cpp b/libcxx/test/std/containers/associative/multiset/multiset.cons/copy.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/multiset.cons/copy.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/multiset.cons/copy.pass.cpp @@ -43,29 +43,29 @@ assert(m.key_comp() == C(5)); assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); assert(mo.get_allocator() == A(7)); assert(mo.key_comp() == C(5)); assert(mo.size() == 9); assert(std::distance(mo.begin(), mo.end()) == 9); - assert(*next(mo.begin(), 0) == 1); - assert(*next(mo.begin(), 1) == 1); - assert(*next(mo.begin(), 2) == 1); - assert(*next(mo.begin(), 3) == 2); - assert(*next(mo.begin(), 4) == 2); - assert(*next(mo.begin(), 5) == 2); - assert(*next(mo.begin(), 6) == 3); - assert(*next(mo.begin(), 7) == 3); - assert(*next(mo.begin(), 8) == 3); + assert(*std::next(mo.begin(), 0) == 1); + assert(*std::next(mo.begin(), 1) == 1); + assert(*std::next(mo.begin(), 2) == 1); + assert(*std::next(mo.begin(), 3) == 2); + assert(*std::next(mo.begin(), 4) == 2); + assert(*std::next(mo.begin(), 5) == 2); + assert(*std::next(mo.begin(), 6) == 3); + assert(*std::next(mo.begin(), 7) == 3); + assert(*std::next(mo.begin(), 8) == 3); } #if TEST_STD_VER >= 11 { @@ -90,29 +90,29 @@ assert(m.key_comp() == C(5)); assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); assert(mo.get_allocator() == A(7)); assert(mo.key_comp() == C(5)); assert(mo.size() == 9); assert(std::distance(mo.begin(), mo.end()) == 9); - assert(*next(mo.begin(), 0) == 1); - assert(*next(mo.begin(), 1) == 1); - assert(*next(mo.begin(), 2) == 1); - assert(*next(mo.begin(), 3) == 2); - assert(*next(mo.begin(), 4) == 2); - assert(*next(mo.begin(), 5) == 2); - assert(*next(mo.begin(), 6) == 3); - assert(*next(mo.begin(), 7) == 3); - assert(*next(mo.begin(), 8) == 3); + assert(*std::next(mo.begin(), 0) == 1); + assert(*std::next(mo.begin(), 1) == 1); + assert(*std::next(mo.begin(), 2) == 1); + assert(*std::next(mo.begin(), 3) == 2); + assert(*std::next(mo.begin(), 4) == 2); + assert(*std::next(mo.begin(), 5) == 2); + assert(*std::next(mo.begin(), 6) == 3); + assert(*std::next(mo.begin(), 7) == 3); + assert(*std::next(mo.begin(), 8) == 3); } #endif diff --git a/libcxx/test/std/containers/associative/multiset/multiset.cons/copy_alloc.pass.cpp b/libcxx/test/std/containers/associative/multiset/multiset.cons/copy_alloc.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/multiset.cons/copy_alloc.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/multiset.cons/copy_alloc.pass.cpp @@ -42,29 +42,29 @@ assert(m.key_comp() == C(5)); assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); assert(mo.get_allocator() == A(7)); assert(mo.key_comp() == C(5)); assert(mo.size() == 9); assert(std::distance(mo.begin(), mo.end()) == 9); - assert(*next(mo.begin(), 0) == 1); - assert(*next(mo.begin(), 1) == 1); - assert(*next(mo.begin(), 2) == 1); - assert(*next(mo.begin(), 3) == 2); - assert(*next(mo.begin(), 4) == 2); - assert(*next(mo.begin(), 5) == 2); - assert(*next(mo.begin(), 6) == 3); - assert(*next(mo.begin(), 7) == 3); - assert(*next(mo.begin(), 8) == 3); + assert(*std::next(mo.begin(), 0) == 1); + assert(*std::next(mo.begin(), 1) == 1); + assert(*std::next(mo.begin(), 2) == 1); + assert(*std::next(mo.begin(), 3) == 2); + assert(*std::next(mo.begin(), 4) == 2); + assert(*std::next(mo.begin(), 5) == 2); + assert(*std::next(mo.begin(), 6) == 3); + assert(*std::next(mo.begin(), 7) == 3); + assert(*std::next(mo.begin(), 8) == 3); return 0; } diff --git a/libcxx/test/std/containers/associative/multiset/multiset.cons/copy_assign.pass.cpp b/libcxx/test/std/containers/associative/multiset/multiset.cons/copy_assign.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/multiset.cons/copy_assign.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/multiset.cons/copy_assign.pass.cpp @@ -44,29 +44,29 @@ assert(m.key_comp() == C(5)); assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); assert(mo.get_allocator() == A(2)); assert(mo.key_comp() == C(5)); assert(mo.size() == 9); assert(std::distance(mo.begin(), mo.end()) == 9); - assert(*next(mo.begin(), 0) == 1); - assert(*next(mo.begin(), 1) == 1); - assert(*next(mo.begin(), 2) == 1); - assert(*next(mo.begin(), 3) == 2); - assert(*next(mo.begin(), 4) == 2); - assert(*next(mo.begin(), 5) == 2); - assert(*next(mo.begin(), 6) == 3); - assert(*next(mo.begin(), 7) == 3); - assert(*next(mo.begin(), 8) == 3); + assert(*std::next(mo.begin(), 0) == 1); + assert(*std::next(mo.begin(), 1) == 1); + assert(*std::next(mo.begin(), 2) == 1); + assert(*std::next(mo.begin(), 3) == 2); + assert(*std::next(mo.begin(), 4) == 2); + assert(*std::next(mo.begin(), 5) == 2); + assert(*std::next(mo.begin(), 6) == 3); + assert(*std::next(mo.begin(), 7) == 3); + assert(*std::next(mo.begin(), 8) == 3); } { typedef int V; @@ -111,29 +111,29 @@ assert(m.key_comp() == C(5)); assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); assert(mo.get_allocator() == A(2)); assert(mo.key_comp() == C(5)); assert(mo.size() == 9); assert(std::distance(mo.begin(), mo.end()) == 9); - assert(*next(mo.begin(), 0) == 1); - assert(*next(mo.begin(), 1) == 1); - assert(*next(mo.begin(), 2) == 1); - assert(*next(mo.begin(), 3) == 2); - assert(*next(mo.begin(), 4) == 2); - assert(*next(mo.begin(), 5) == 2); - assert(*next(mo.begin(), 6) == 3); - assert(*next(mo.begin(), 7) == 3); - assert(*next(mo.begin(), 8) == 3); + assert(*std::next(mo.begin(), 0) == 1); + assert(*std::next(mo.begin(), 1) == 1); + assert(*std::next(mo.begin(), 2) == 1); + assert(*std::next(mo.begin(), 3) == 2); + assert(*std::next(mo.begin(), 4) == 2); + assert(*std::next(mo.begin(), 5) == 2); + assert(*std::next(mo.begin(), 6) == 3); + assert(*std::next(mo.begin(), 7) == 3); + assert(*std::next(mo.begin(), 8) == 3); } return 0; diff --git a/libcxx/test/std/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp b/libcxx/test/std/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp @@ -40,15 +40,15 @@ cpp17_input_iterator(ar+sizeof(ar)/sizeof(ar[0]))); assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); } #if TEST_STD_VER >= 11 { @@ -69,15 +69,15 @@ cpp17_input_iterator(ar+sizeof(ar)/sizeof(ar[0]))); assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); } #endif diff --git a/libcxx/test/std/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp b/libcxx/test/std/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp @@ -47,15 +47,15 @@ assert(m.get_allocator() == A(7)); assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); } #if TEST_STD_VER > 11 { @@ -79,15 +79,15 @@ assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); assert(m.get_allocator() == a); } #endif diff --git a/libcxx/test/std/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp b/libcxx/test/std/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp @@ -41,15 +41,15 @@ assert(m.value_comp() == C(5)); assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); return 0; } diff --git a/libcxx/test/std/containers/associative/multiset/multiset.cons/move.pass.cpp b/libcxx/test/std/containers/associative/multiset/multiset.cons/move.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/multiset.cons/move.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/multiset.cons/move.pass.cpp @@ -62,15 +62,15 @@ assert(m.key_comp() == C(5)); assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); assert(mo.get_allocator() == A(test_alloc_base::moved_value)); assert(mo.key_comp() == C(5)); @@ -99,15 +99,15 @@ assert(m.key_comp() == C(5)); assert(m.size() == 9); assert(std::distance(m.begin(), m.end()) == 9); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 1); - assert(*next(m.begin(), 2) == 1); - assert(*next(m.begin(), 3) == 2); - assert(*next(m.begin(), 4) == 2); - assert(*next(m.begin(), 5) == 2); - assert(*next(m.begin(), 6) == 3); - assert(*next(m.begin(), 7) == 3); - assert(*next(m.begin(), 8) == 3); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 1); + assert(*std::next(m.begin(), 2) == 1); + assert(*std::next(m.begin(), 3) == 2); + assert(*std::next(m.begin(), 4) == 2); + assert(*std::next(m.begin(), 5) == 2); + assert(*std::next(m.begin(), 6) == 3); + assert(*std::next(m.begin(), 7) == 3); + assert(*std::next(m.begin(), 8) == 3); assert(mo.get_allocator() == A()); assert(mo.key_comp() == C(5)); diff --git a/libcxx/test/std/containers/associative/multiset/upper_bound.pass.cpp b/libcxx/test/std/containers/associative/multiset/upper_bound.pass.cpp --- a/libcxx/test/std/containers/associative/multiset/upper_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/upper_bound.pass.cpp @@ -41,19 +41,19 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(5); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(7); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(9); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); r = m.upper_bound(11); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); } { typedef M::const_iterator R; @@ -71,19 +71,19 @@ }; const M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(5); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(7); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(9); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); r = m.upper_bound(11); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); } } #if TEST_STD_VER >= 11 @@ -106,19 +106,19 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(5); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(7); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(9); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); r = m.upper_bound(11); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); } { typedef M::const_iterator R; @@ -136,19 +136,19 @@ }; const M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(5); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(7); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(9); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); r = m.upper_bound(11); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); } } #endif @@ -172,19 +172,19 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(5); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(7); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(9); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); r = m.upper_bound(11); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); } { @@ -204,19 +204,19 @@ m.insert ( V::make ( 9 )); R r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(5); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(6); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(7); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(8); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(9); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); r = m.upper_bound(11); - assert(r == next(m.begin(), 9)); + assert(r == std::next(m.begin(), 9)); } #endif diff --git a/libcxx/test/std/containers/associative/set/emplace.pass.cpp b/libcxx/test/std/containers/associative/set/emplace.pass.cpp --- a/libcxx/test/std/containers/associative/set/emplace.pass.cpp +++ b/libcxx/test/std/containers/associative/set/emplace.pass.cpp @@ -56,12 +56,12 @@ assert(*m.begin() == Emplaceable()); r = m.emplace(2, 3.5); assert(r.second); - assert(r.first == next(m.begin())); + assert(r.first == std::next(m.begin())); assert(m.size() == 2); assert(*r.first == Emplaceable(2, 3.5)); r = m.emplace(2, 3.5); assert(!r.second); - assert(r.first == next(m.begin())); + assert(r.first == std::next(m.begin())); assert(m.size() == 2); assert(*r.first == Emplaceable(2, 3.5)); } diff --git a/libcxx/test/std/containers/associative/set/emplace_hint.pass.cpp b/libcxx/test/std/containers/associative/set/emplace_hint.pass.cpp --- a/libcxx/test/std/containers/associative/set/emplace_hint.pass.cpp +++ b/libcxx/test/std/containers/associative/set/emplace_hint.pass.cpp @@ -52,11 +52,11 @@ assert(m.size() == 1); assert(*m.begin() == Emplaceable()); r = m.emplace_hint(m.cend(), 2, 3.5); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 2); assert(*r == Emplaceable(2, 3.5)); r = m.emplace_hint(m.cbegin(), 2, 3.5); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); assert(m.size() == 2); assert(*r == Emplaceable(2, 3.5)); } diff --git a/libcxx/test/std/containers/associative/set/equal_range.pass.cpp b/libcxx/test/std/containers/associative/set/equal_range.pass.cpp --- a/libcxx/test/std/containers/associative/set/equal_range.pass.cpp +++ b/libcxx/test/std/containers/associative/set/equal_range.pass.cpp @@ -40,56 +40,56 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(11); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(13); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(15); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(17); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(19); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 8)); r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(12); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(14); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(16); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(18); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(20); - assert(r.first == next(m.begin(), 8)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 8)); + assert(r.second == std::next(m.begin(), 8)); } { typedef std::pair R; @@ -106,56 +106,56 @@ }; const M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(11); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(13); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(15); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(17); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(19); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 8)); r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(12); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(14); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(16); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(18); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(20); - assert(r.first == next(m.begin(), 8)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 8)); + assert(r.second == std::next(m.begin(), 8)); } } #if TEST_STD_VER >= 11 @@ -176,56 +176,56 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(11); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(13); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(15); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(17); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(19); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 8)); r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(12); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(14); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(16); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(18); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(20); - assert(r.first == next(m.begin(), 8)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 8)); + assert(r.second == std::next(m.begin(), 8)); } #endif #if TEST_STD_VER > 11 @@ -247,56 +247,56 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(11); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(13); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(15); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(17); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(19); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 8)); r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(12); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(14); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(16); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(18); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(20); - assert(r.first == next(m.begin(), 8)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 8)); + assert(r.second == std::next(m.begin(), 8)); } } { @@ -315,56 +315,56 @@ m.insert ( V::make ( 19 )); R r = m.equal_range(5); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(7); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(9); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(11); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(13); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(15); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(17); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(19); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 8)); r = m.equal_range(4); - assert(r.first == next(m.begin(), 0)); - assert(r.second == next(m.begin(), 0)); + assert(r.first == std::next(m.begin(), 0)); + assert(r.second == std::next(m.begin(), 0)); r = m.equal_range(6); - assert(r.first == next(m.begin(), 1)); - assert(r.second == next(m.begin(), 1)); + assert(r.first == std::next(m.begin(), 1)); + assert(r.second == std::next(m.begin(), 1)); r = m.equal_range(8); - assert(r.first == next(m.begin(), 2)); - assert(r.second == next(m.begin(), 2)); + assert(r.first == std::next(m.begin(), 2)); + assert(r.second == std::next(m.begin(), 2)); r = m.equal_range(10); - assert(r.first == next(m.begin(), 3)); - assert(r.second == next(m.begin(), 3)); + assert(r.first == std::next(m.begin(), 3)); + assert(r.second == std::next(m.begin(), 3)); r = m.equal_range(12); - assert(r.first == next(m.begin(), 4)); - assert(r.second == next(m.begin(), 4)); + assert(r.first == std::next(m.begin(), 4)); + assert(r.second == std::next(m.begin(), 4)); r = m.equal_range(14); - assert(r.first == next(m.begin(), 5)); - assert(r.second == next(m.begin(), 5)); + assert(r.first == std::next(m.begin(), 5)); + assert(r.second == std::next(m.begin(), 5)); r = m.equal_range(16); - assert(r.first == next(m.begin(), 6)); - assert(r.second == next(m.begin(), 6)); + assert(r.first == std::next(m.begin(), 6)); + assert(r.second == std::next(m.begin(), 6)); r = m.equal_range(18); - assert(r.first == next(m.begin(), 7)); - assert(r.second == next(m.begin(), 7)); + assert(r.first == std::next(m.begin(), 7)); + assert(r.second == std::next(m.begin(), 7)); r = m.equal_range(20); - assert(r.first == next(m.begin(), 8)); - assert(r.second == next(m.begin(), 8)); + assert(r.first == std::next(m.begin(), 8)); + assert(r.second == std::next(m.begin(), 8)); } #endif diff --git a/libcxx/test/std/containers/associative/set/erase_iter.pass.cpp b/libcxx/test/std/containers/associative/set/erase_iter.pass.cpp --- a/libcxx/test/std/containers/associative/set/erase_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/set/erase_iter.pass.cpp @@ -45,61 +45,61 @@ }; M m(ar, ar + sizeof(ar)/sizeof(ar[0])); assert(m.size() == 8); - I i = m.erase(next(m.cbegin(), 3)); + I i = m.erase(std::next(m.cbegin(), 3)); assert(m.size() == 7); - assert(i == next(m.begin(), 3)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 5); - assert(*next(m.begin(), 4) == 6); - assert(*next(m.begin(), 5) == 7); - assert(*next(m.begin(), 6) == 8); - - i = m.erase(next(m.cbegin(), 0)); + assert(i == std::next(m.begin(), 3)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 5); + assert(*std::next(m.begin(), 4) == 6); + assert(*std::next(m.begin(), 5) == 7); + assert(*std::next(m.begin(), 6) == 8); + + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 6); assert(i == m.begin()); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 5); - assert(*next(m.begin(), 3) == 6); - assert(*next(m.begin(), 4) == 7); - assert(*next(m.begin(), 5) == 8); - - i = m.erase(next(m.cbegin(), 5)); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 5); + assert(*std::next(m.begin(), 3) == 6); + assert(*std::next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 5) == 8); + + i = m.erase(std::next(m.cbegin(), 5)); assert(m.size() == 5); assert(i == m.end()); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 5); - assert(*next(m.begin(), 3) == 6); - assert(*next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 5); + assert(*std::next(m.begin(), 3) == 6); + assert(*std::next(m.begin(), 4) == 7); - i = m.erase(next(m.cbegin(), 1)); + i = m.erase(std::next(m.cbegin(), 1)); assert(m.size() == 4); - assert(i == next(m.begin())); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); - assert(*next(m.begin(), 2) == 6); - assert(*next(m.begin(), 3) == 7); + assert(i == std::next(m.begin())); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 2) == 6); + assert(*std::next(m.begin(), 3) == 7); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 3); - assert(i == next(m.begin(), 2)); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); - assert(*next(m.begin(), 2) == 7); + assert(i == std::next(m.begin(), 2)); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 2) == 7); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 2); - assert(i == next(m.begin(), 2)); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); + assert(i == std::next(m.begin(), 2)); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); - i = m.erase(next(m.cbegin(), 0)); + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 1); - assert(i == next(m.begin(), 0)); - assert(*next(m.begin(), 0) == 5); + assert(i == std::next(m.begin(), 0)); + assert(*std::next(m.begin(), 0) == 5); i = m.erase(m.cbegin()); assert(m.size() == 0); @@ -124,61 +124,61 @@ }; M m(ar, ar + sizeof(ar)/sizeof(ar[0])); assert(m.size() == 8); - I i = m.erase(next(m.cbegin(), 3)); + I i = m.erase(std::next(m.cbegin(), 3)); assert(m.size() == 7); - assert(i == next(m.begin(), 3)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 5); - assert(*next(m.begin(), 4) == 6); - assert(*next(m.begin(), 5) == 7); - assert(*next(m.begin(), 6) == 8); - - i = m.erase(next(m.cbegin(), 0)); + assert(i == std::next(m.begin(), 3)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 5); + assert(*std::next(m.begin(), 4) == 6); + assert(*std::next(m.begin(), 5) == 7); + assert(*std::next(m.begin(), 6) == 8); + + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 6); assert(i == m.begin()); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 5); - assert(*next(m.begin(), 3) == 6); - assert(*next(m.begin(), 4) == 7); - assert(*next(m.begin(), 5) == 8); - - i = m.erase(next(m.cbegin(), 5)); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 5); + assert(*std::next(m.begin(), 3) == 6); + assert(*std::next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 5) == 8); + + i = m.erase(std::next(m.cbegin(), 5)); assert(m.size() == 5); assert(i == m.end()); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 5); - assert(*next(m.begin(), 3) == 6); - assert(*next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 5); + assert(*std::next(m.begin(), 3) == 6); + assert(*std::next(m.begin(), 4) == 7); - i = m.erase(next(m.cbegin(), 1)); + i = m.erase(std::next(m.cbegin(), 1)); assert(m.size() == 4); - assert(i == next(m.begin())); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); - assert(*next(m.begin(), 2) == 6); - assert(*next(m.begin(), 3) == 7); + assert(i == std::next(m.begin())); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 2) == 6); + assert(*std::next(m.begin(), 3) == 7); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 3); - assert(i == next(m.begin(), 2)); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); - assert(*next(m.begin(), 2) == 7); + assert(i == std::next(m.begin(), 2)); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 2) == 7); - i = m.erase(next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 2)); assert(m.size() == 2); - assert(i == next(m.begin(), 2)); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); + assert(i == std::next(m.begin(), 2)); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); - i = m.erase(next(m.cbegin(), 0)); + i = m.erase(std::next(m.cbegin(), 0)); assert(m.size() == 1); - assert(i == next(m.begin(), 0)); - assert(*next(m.begin(), 0) == 5); + assert(i == std::next(m.begin(), 0)); + assert(*std::next(m.begin(), 0) == 5); i = m.erase(m.cbegin()); assert(m.size() == 0); diff --git a/libcxx/test/std/containers/associative/set/erase_iter_iter.pass.cpp b/libcxx/test/std/containers/associative/set/erase_iter_iter.pass.cpp --- a/libcxx/test/std/containers/associative/set/erase_iter_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/set/erase_iter_iter.pass.cpp @@ -37,42 +37,42 @@ }; M m(ar, ar + sizeof(ar)/sizeof(ar[0])); assert(m.size() == 8); - I i = m.erase(next(m.cbegin(), 5), next(m.cbegin(), 5)); + I i = m.erase(std::next(m.cbegin(), 5), std::next(m.cbegin(), 5)); assert(m.size() == 8); - assert(i == next(m.begin(), 5)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 4); - assert(*next(m.begin(), 4) == 5); - assert(*next(m.begin(), 5) == 6); - assert(*next(m.begin(), 6) == 7); - assert(*next(m.begin(), 7) == 8); + assert(i == std::next(m.begin(), 5)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 4); + assert(*std::next(m.begin(), 4) == 5); + assert(*std::next(m.begin(), 5) == 6); + assert(*std::next(m.begin(), 6) == 7); + assert(*std::next(m.begin(), 7) == 8); - i = m.erase(next(m.cbegin(), 3), next(m.cbegin(), 4)); + i = m.erase(std::next(m.cbegin(), 3), std::next(m.cbegin(), 4)); assert(m.size() == 7); - assert(i == next(m.begin(), 3)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 5); - assert(*next(m.begin(), 4) == 6); - assert(*next(m.begin(), 5) == 7); - assert(*next(m.begin(), 6) == 8); + assert(i == std::next(m.begin(), 3)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 5); + assert(*std::next(m.begin(), 4) == 6); + assert(*std::next(m.begin(), 5) == 7); + assert(*std::next(m.begin(), 6) == 8); - i = m.erase(next(m.cbegin(), 2), next(m.cbegin(), 5)); + i = m.erase(std::next(m.cbegin(), 2), std::next(m.cbegin(), 5)); assert(m.size() == 4); - assert(i == next(m.begin(), 2)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 7); - assert(*next(m.begin(), 3) == 8); + assert(i == std::next(m.begin(), 2)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 7); + assert(*std::next(m.begin(), 3) == 8); - i = m.erase(next(m.cbegin(), 0), next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 0), std::next(m.cbegin(), 2)); assert(m.size() == 2); - assert(i == next(m.begin(), 0)); - assert(*next(m.begin(), 0) == 7); - assert(*next(m.begin(), 1) == 8); + assert(i == std::next(m.begin(), 0)); + assert(*std::next(m.begin(), 0) == 7); + assert(*std::next(m.begin(), 1) == 8); i = m.erase(m.cbegin(), m.cend()); assert(m.size() == 0); @@ -96,42 +96,42 @@ }; M m(ar, ar + sizeof(ar)/sizeof(ar[0])); assert(m.size() == 8); - I i = m.erase(next(m.cbegin(), 5), next(m.cbegin(), 5)); + I i = m.erase(std::next(m.cbegin(), 5), std::next(m.cbegin(), 5)); assert(m.size() == 8); - assert(i == next(m.begin(), 5)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 4); - assert(*next(m.begin(), 4) == 5); - assert(*next(m.begin(), 5) == 6); - assert(*next(m.begin(), 6) == 7); - assert(*next(m.begin(), 7) == 8); + assert(i == std::next(m.begin(), 5)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 4); + assert(*std::next(m.begin(), 4) == 5); + assert(*std::next(m.begin(), 5) == 6); + assert(*std::next(m.begin(), 6) == 7); + assert(*std::next(m.begin(), 7) == 8); - i = m.erase(next(m.cbegin(), 3), next(m.cbegin(), 4)); + i = m.erase(std::next(m.cbegin(), 3), std::next(m.cbegin(), 4)); assert(m.size() == 7); - assert(i == next(m.begin(), 3)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 5); - assert(*next(m.begin(), 4) == 6); - assert(*next(m.begin(), 5) == 7); - assert(*next(m.begin(), 6) == 8); + assert(i == std::next(m.begin(), 3)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 5); + assert(*std::next(m.begin(), 4) == 6); + assert(*std::next(m.begin(), 5) == 7); + assert(*std::next(m.begin(), 6) == 8); - i = m.erase(next(m.cbegin(), 2), next(m.cbegin(), 5)); + i = m.erase(std::next(m.cbegin(), 2), std::next(m.cbegin(), 5)); assert(m.size() == 4); - assert(i == next(m.begin(), 2)); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 7); - assert(*next(m.begin(), 3) == 8); + assert(i == std::next(m.begin(), 2)); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 7); + assert(*std::next(m.begin(), 3) == 8); - i = m.erase(next(m.cbegin(), 0), next(m.cbegin(), 2)); + i = m.erase(std::next(m.cbegin(), 0), std::next(m.cbegin(), 2)); assert(m.size() == 2); - assert(i == next(m.begin(), 0)); - assert(*next(m.begin(), 0) == 7); - assert(*next(m.begin(), 1) == 8); + assert(i == std::next(m.begin(), 0)); + assert(*std::next(m.begin(), 0) == 7); + assert(*std::next(m.begin(), 1) == 8); i = m.erase(m.cbegin(), m.cend()); assert(m.size() == 0); diff --git a/libcxx/test/std/containers/associative/set/erase_key.pass.cpp b/libcxx/test/std/containers/associative/set/erase_key.pass.cpp --- a/libcxx/test/std/containers/associative/set/erase_key.pass.cpp +++ b/libcxx/test/std/containers/associative/set/erase_key.pass.cpp @@ -40,70 +40,70 @@ I i = m.erase(9); assert(m.size() == 8); assert(i == 0); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 4); - assert(*next(m.begin(), 4) == 5); - assert(*next(m.begin(), 5) == 6); - assert(*next(m.begin(), 6) == 7); - assert(*next(m.begin(), 7) == 8); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 4); + assert(*std::next(m.begin(), 4) == 5); + assert(*std::next(m.begin(), 5) == 6); + assert(*std::next(m.begin(), 6) == 7); + assert(*std::next(m.begin(), 7) == 8); i = m.erase(4); assert(m.size() == 7); assert(i == 1); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 5); - assert(*next(m.begin(), 4) == 6); - assert(*next(m.begin(), 5) == 7); - assert(*next(m.begin(), 6) == 8); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 5); + assert(*std::next(m.begin(), 4) == 6); + assert(*std::next(m.begin(), 5) == 7); + assert(*std::next(m.begin(), 6) == 8); i = m.erase(1); assert(m.size() == 6); assert(i == 1); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 5); - assert(*next(m.begin(), 3) == 6); - assert(*next(m.begin(), 4) == 7); - assert(*next(m.begin(), 5) == 8); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 5); + assert(*std::next(m.begin(), 3) == 6); + assert(*std::next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 5) == 8); i = m.erase(8); assert(m.size() == 5); assert(i == 1); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 5); - assert(*next(m.begin(), 3) == 6); - assert(*next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 5); + assert(*std::next(m.begin(), 3) == 6); + assert(*std::next(m.begin(), 4) == 7); i = m.erase(3); assert(m.size() == 4); assert(i == 1); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); - assert(*next(m.begin(), 2) == 6); - assert(*next(m.begin(), 3) == 7); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 2) == 6); + assert(*std::next(m.begin(), 3) == 7); i = m.erase(6); assert(m.size() == 3); assert(i == 1); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); - assert(*next(m.begin(), 2) == 7); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 2) == 7); i = m.erase(7); assert(m.size() == 2); assert(i == 1); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); i = m.erase(2); assert(m.size() == 1); assert(i == 1); - assert(*next(m.begin(), 0) == 5); + assert(*std::next(m.begin(), 0) == 5); i = m.erase(5); assert(m.size() == 0); @@ -130,70 +130,70 @@ I i = m.erase(9); assert(m.size() == 8); assert(i == 0); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 4); - assert(*next(m.begin(), 4) == 5); - assert(*next(m.begin(), 5) == 6); - assert(*next(m.begin(), 6) == 7); - assert(*next(m.begin(), 7) == 8); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 4); + assert(*std::next(m.begin(), 4) == 5); + assert(*std::next(m.begin(), 5) == 6); + assert(*std::next(m.begin(), 6) == 7); + assert(*std::next(m.begin(), 7) == 8); i = m.erase(4); assert(m.size() == 7); assert(i == 1); - assert(*next(m.begin(), 0) == 1); - assert(*next(m.begin(), 1) == 2); - assert(*next(m.begin(), 2) == 3); - assert(*next(m.begin(), 3) == 5); - assert(*next(m.begin(), 4) == 6); - assert(*next(m.begin(), 5) == 7); - assert(*next(m.begin(), 6) == 8); + assert(*std::next(m.begin(), 0) == 1); + assert(*std::next(m.begin(), 1) == 2); + assert(*std::next(m.begin(), 2) == 3); + assert(*std::next(m.begin(), 3) == 5); + assert(*std::next(m.begin(), 4) == 6); + assert(*std::next(m.begin(), 5) == 7); + assert(*std::next(m.begin(), 6) == 8); i = m.erase(1); assert(m.size() == 6); assert(i == 1); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 5); - assert(*next(m.begin(), 3) == 6); - assert(*next(m.begin(), 4) == 7); - assert(*next(m.begin(), 5) == 8); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 5); + assert(*std::next(m.begin(), 3) == 6); + assert(*std::next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 5) == 8); i = m.erase(8); assert(m.size() == 5); assert(i == 1); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 3); - assert(*next(m.begin(), 2) == 5); - assert(*next(m.begin(), 3) == 6); - assert(*next(m.begin(), 4) == 7); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 3); + assert(*std::next(m.begin(), 2) == 5); + assert(*std::next(m.begin(), 3) == 6); + assert(*std::next(m.begin(), 4) == 7); i = m.erase(3); assert(m.size() == 4); assert(i == 1); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); - assert(*next(m.begin(), 2) == 6); - assert(*next(m.begin(), 3) == 7); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 2) == 6); + assert(*std::next(m.begin(), 3) == 7); i = m.erase(6); assert(m.size() == 3); assert(i == 1); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); - assert(*next(m.begin(), 2) == 7); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 2) == 7); i = m.erase(7); assert(m.size() == 2); assert(i == 1); - assert(*next(m.begin(), 0) == 2); - assert(*next(m.begin(), 1) == 5); + assert(*std::next(m.begin(), 0) == 2); + assert(*std::next(m.begin(), 1) == 5); i = m.erase(2); assert(m.size() == 1); assert(i == 1); - assert(*next(m.begin(), 0) == 5); + assert(*std::next(m.begin(), 0) == 5); i = m.erase(5); assert(m.size() == 0); diff --git a/libcxx/test/std/containers/associative/set/find.pass.cpp b/libcxx/test/std/containers/associative/set/find.pass.cpp --- a/libcxx/test/std/containers/associative/set/find.pass.cpp +++ b/libcxx/test/std/containers/associative/set/find.pass.cpp @@ -42,21 +42,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -75,21 +75,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #if TEST_STD_VER >= 11 @@ -113,21 +113,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -146,21 +146,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #endif @@ -185,21 +185,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { @@ -220,21 +220,21 @@ R r = m.find(5); assert(r == m.begin()); r = m.find(6); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.find(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.find(8); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.find(9); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.find(10); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.find(11); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.find(12); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.find(4); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } #endif diff --git a/libcxx/test/std/containers/associative/set/insert_cv.pass.cpp b/libcxx/test/std/containers/associative/set/insert_cv.pass.cpp --- a/libcxx/test/std/containers/associative/set/insert_cv.pass.cpp +++ b/libcxx/test/std/containers/associative/set/insert_cv.pass.cpp @@ -43,13 +43,13 @@ const VT v3(3); r = m.insert(v3); assert(r.second); - assert(r.first == prev(m.end())); + assert(r.first == std::prev(m.end())); assert(m.size() == 3); assert(*r.first == 3); r = m.insert(v3); assert(!r.second); - assert(r.first == prev(m.end())); + assert(r.first == std::prev(m.end())); assert(m.size() == 3); assert(*r.first == 3); } diff --git a/libcxx/test/std/containers/associative/set/insert_iter_cv.pass.cpp b/libcxx/test/std/containers/associative/set/insert_iter_cv.pass.cpp --- a/libcxx/test/std/containers/associative/set/insert_iter_cv.pass.cpp +++ b/libcxx/test/std/containers/associative/set/insert_iter_cv.pass.cpp @@ -35,12 +35,12 @@ assert(*r == 1); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); } @@ -60,12 +60,12 @@ assert(*r == 1); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); } diff --git a/libcxx/test/std/containers/associative/set/insert_iter_iter.pass.cpp b/libcxx/test/std/containers/associative/set/insert_iter_iter.pass.cpp --- a/libcxx/test/std/containers/associative/set/insert_iter_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/set/insert_iter_iter.pass.cpp @@ -42,8 +42,8 @@ cpp17_input_iterator(ar + sizeof(ar)/sizeof(ar[0]))); assert(m.size() == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); } #if TEST_STD_VER >= 11 { @@ -66,8 +66,8 @@ cpp17_input_iterator(ar + sizeof(ar)/sizeof(ar[0]))); assert(m.size() == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); } #endif diff --git a/libcxx/test/std/containers/associative/set/insert_iter_rv.pass.cpp b/libcxx/test/std/containers/associative/set/insert_iter_rv.pass.cpp --- a/libcxx/test/std/containers/associative/set/insert_iter_rv.pass.cpp +++ b/libcxx/test/std/containers/associative/set/insert_iter_rv.pass.cpp @@ -38,12 +38,12 @@ assert(*r == 1); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); } @@ -62,12 +62,12 @@ assert(*r == 1); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); r = m.insert(m.cend(), M::value_type(3)); - assert(r == prev(m.end())); + assert(r == std::prev(m.end())); assert(m.size() == 3); assert(*r == 3); } diff --git a/libcxx/test/std/containers/associative/set/insert_rv.pass.cpp b/libcxx/test/std/containers/associative/set/insert_rv.pass.cpp --- a/libcxx/test/std/containers/associative/set/insert_rv.pass.cpp +++ b/libcxx/test/std/containers/associative/set/insert_rv.pass.cpp @@ -41,13 +41,13 @@ r = m.insert(M::value_type(3)); assert(r.second); - assert(r.first == prev(m.end())); + assert(r.first == std::prev(m.end())); assert(m.size() == 3); assert(*r.first == 3); r = m.insert(M::value_type(3)); assert(!r.second); - assert(r.first == prev(m.end())); + assert(r.first == std::prev(m.end())); assert(m.size() == 3); assert(*r.first == 3); } @@ -69,13 +69,13 @@ r = m.insert(M::value_type(3)); assert(r.second); - assert(r.first == prev(m.end())); + assert(r.first == std::prev(m.end())); assert(m.size() == 3); assert(*r.first == 3); r = m.insert(M::value_type(3)); assert(!r.second); - assert(r.first == prev(m.end())); + assert(r.first == std::prev(m.end())); assert(m.size() == 3); assert(*r.first == 3); } diff --git a/libcxx/test/std/containers/associative/set/lower_bound.pass.cpp b/libcxx/test/std/containers/associative/set/lower_bound.pass.cpp --- a/libcxx/test/std/containers/associative/set/lower_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/set/lower_bound.pass.cpp @@ -42,37 +42,37 @@ R r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(7); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.lower_bound(9); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(11); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(13); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(15); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(17); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(19); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.lower_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -91,37 +91,37 @@ R r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(7); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.lower_bound(9); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(11); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(13); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(15); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(17); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(19); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.lower_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #if TEST_STD_VER >= 11 @@ -145,37 +145,37 @@ R r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(7); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.lower_bound(9); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(11); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(13); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(15); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(17); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(19); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.lower_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -194,37 +194,37 @@ R r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(7); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.lower_bound(9); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(11); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(13); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(15); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(17); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(19); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.lower_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #endif @@ -249,37 +249,37 @@ R r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(7); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.lower_bound(9); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(11); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(13); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(15); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(17); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(19); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.lower_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { @@ -300,37 +300,37 @@ R r = m.lower_bound(5); assert(r == m.begin()); r = m.lower_bound(7); - assert(r == next(m.begin())); + assert(r == std::next(m.begin())); r = m.lower_bound(9); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(11); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(13); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(15); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(17); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(19); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.lower_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.lower_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.lower_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.lower_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.lower_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.lower_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.lower_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.lower_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } #endif diff --git a/libcxx/test/std/containers/associative/set/set.cons/copy.pass.cpp b/libcxx/test/std/containers/associative/set/set.cons/copy.pass.cpp --- a/libcxx/test/std/containers/associative/set/set.cons/copy.pass.cpp +++ b/libcxx/test/std/containers/associative/set/set.cons/copy.pass.cpp @@ -44,16 +44,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); assert(mo.get_allocator() == A(7)); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == 1); - assert(*next(mo.begin()) == 2); - assert(*next(mo.begin(), 2) == 3); + assert(*std::next(mo.begin()) == 2); + assert(*std::next(mo.begin(), 2) == 3); } #if TEST_STD_VER >= 11 { @@ -79,16 +79,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); assert(mo.get_allocator() == A(7)); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == 1); - assert(*next(mo.begin()) == 2); - assert(*next(mo.begin(), 2) == 3); + assert(*std::next(mo.begin()) == 2); + assert(*std::next(mo.begin(), 2) == 3); } #endif diff --git a/libcxx/test/std/containers/associative/set/set.cons/copy_alloc.pass.cpp b/libcxx/test/std/containers/associative/set/set.cons/copy_alloc.pass.cpp --- a/libcxx/test/std/containers/associative/set/set.cons/copy_alloc.pass.cpp +++ b/libcxx/test/std/containers/associative/set/set.cons/copy_alloc.pass.cpp @@ -43,16 +43,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); assert(mo.get_allocator() == A(7)); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == 1); - assert(*next(mo.begin()) == 2); - assert(*next(mo.begin(), 2) == 3); + assert(*std::next(mo.begin()) == 2); + assert(*std::next(mo.begin(), 2) == 3); return 0; } diff --git a/libcxx/test/std/containers/associative/set/set.cons/copy_assign.pass.cpp b/libcxx/test/std/containers/associative/set/set.cons/copy_assign.pass.cpp --- a/libcxx/test/std/containers/associative/set/set.cons/copy_assign.pass.cpp +++ b/libcxx/test/std/containers/associative/set/set.cons/copy_assign.pass.cpp @@ -45,16 +45,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); assert(mo.get_allocator() == A(2)); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == 1); - assert(*next(mo.begin()) == 2); - assert(*next(mo.begin(), 2) == 3); + assert(*std::next(mo.begin()) == 2); + assert(*std::next(mo.begin(), 2) == 3); } { typedef int V; @@ -95,16 +95,16 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); assert(mo.get_allocator() == A(2)); assert(mo.key_comp() == C(5)); assert(mo.size() == 3); assert(std::distance(mo.begin(), mo.end()) == 3); assert(*mo.begin() == 1); - assert(*next(mo.begin()) == 2); - assert(*next(mo.begin(), 2) == 3); + assert(*std::next(mo.begin()) == 2); + assert(*std::next(mo.begin(), 2) == 3); } return 0; diff --git a/libcxx/test/std/containers/associative/set/set.cons/iter_iter.pass.cpp b/libcxx/test/std/containers/associative/set/set.cons/iter_iter.pass.cpp --- a/libcxx/test/std/containers/associative/set/set.cons/iter_iter.pass.cpp +++ b/libcxx/test/std/containers/associative/set/set.cons/iter_iter.pass.cpp @@ -41,8 +41,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); } #if TEST_STD_VER >= 11 { @@ -64,8 +64,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); } #endif diff --git a/libcxx/test/std/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp b/libcxx/test/std/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp --- a/libcxx/test/std/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp +++ b/libcxx/test/std/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp @@ -52,8 +52,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); } #if TEST_STD_VER > 11 { @@ -78,8 +78,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); assert(m.get_allocator() == a); } #endif diff --git a/libcxx/test/std/containers/associative/set/set.cons/iter_iter_comp.pass.cpp b/libcxx/test/std/containers/associative/set/set.cons/iter_iter_comp.pass.cpp --- a/libcxx/test/std/containers/associative/set/set.cons/iter_iter_comp.pass.cpp +++ b/libcxx/test/std/containers/associative/set/set.cons/iter_iter_comp.pass.cpp @@ -42,8 +42,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); return 0; } diff --git a/libcxx/test/std/containers/associative/set/set.cons/move.pass.cpp b/libcxx/test/std/containers/associative/set/set.cons/move.pass.cpp --- a/libcxx/test/std/containers/associative/set/set.cons/move.pass.cpp +++ b/libcxx/test/std/containers/associative/set/set.cons/move.pass.cpp @@ -63,8 +63,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); assert(mo.get_allocator() == A(test_alloc_base::moved_value)); assert(mo.key_comp() == C(5)); @@ -94,8 +94,8 @@ assert(m.size() == 3); assert(std::distance(m.begin(), m.end()) == 3); assert(*m.begin() == 1); - assert(*next(m.begin()) == 2); - assert(*next(m.begin(), 2) == 3); + assert(*std::next(m.begin()) == 2); + assert(*std::next(m.begin(), 2) == 3); assert(mo.get_allocator() == A()); assert(mo.key_comp() == C(5)); diff --git a/libcxx/test/std/containers/associative/set/upper_bound.pass.cpp b/libcxx/test/std/containers/associative/set/upper_bound.pass.cpp --- a/libcxx/test/std/containers/associative/set/upper_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/set/upper_bound.pass.cpp @@ -40,39 +40,39 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(5); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(9); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(11); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(13); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(15); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(17); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(19); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -89,39 +89,39 @@ }; const M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(5); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(9); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(11); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(13); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(15); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(17); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(19); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #if TEST_STD_VER >= 11 @@ -143,39 +143,39 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(5); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(9); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(11); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(13); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(15); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(17); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(19); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { typedef M::const_iterator R; @@ -192,39 +192,39 @@ }; const M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(5); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(9); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(11); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(13); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(15); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(17); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(19); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } } #endif @@ -247,39 +247,39 @@ }; M m(ar, ar+sizeof(ar)/sizeof(ar[0])); R r = m.upper_bound(5); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(9); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(11); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(13); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(15); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(17); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(19); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } { @@ -298,39 +298,39 @@ m.insert ( V::make ( 19 )); R r = m.upper_bound(5); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(7); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(9); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(11); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(13); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(15); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(17); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(19); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); r = m.upper_bound(4); - assert(r == next(m.begin(), 0)); + assert(r == std::next(m.begin(), 0)); r = m.upper_bound(6); - assert(r == next(m.begin(), 1)); + assert(r == std::next(m.begin(), 1)); r = m.upper_bound(8); - assert(r == next(m.begin(), 2)); + assert(r == std::next(m.begin(), 2)); r = m.upper_bound(10); - assert(r == next(m.begin(), 3)); + assert(r == std::next(m.begin(), 3)); r = m.upper_bound(12); - assert(r == next(m.begin(), 4)); + assert(r == std::next(m.begin(), 4)); r = m.upper_bound(14); - assert(r == next(m.begin(), 5)); + assert(r == std::next(m.begin(), 5)); r = m.upper_bound(16); - assert(r == next(m.begin(), 6)); + assert(r == std::next(m.begin(), 6)); r = m.upper_bound(18); - assert(r == next(m.begin(), 7)); + assert(r == std::next(m.begin(), 7)); r = m.upper_bound(20); - assert(r == next(m.begin(), 8)); + assert(r == std::next(m.begin(), 8)); } #endif diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/emplace_after.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/emplace_after.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/emplace_after.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/emplace_after.pass.cpp @@ -33,24 +33,24 @@ assert(std::distance(c.begin(), c.end()) == 1); i = c.emplace_after(c.cbegin(), 1, 2.5); - assert(i == next(c.begin())); + assert(i == std::next(c.begin())); assert(c.front() == Emplaceable()); - assert(*next(c.begin()) == Emplaceable(1, 2.5)); + assert(*std::next(c.begin()) == Emplaceable(1, 2.5)); assert(std::distance(c.begin(), c.end()) == 2); - i = c.emplace_after(next(c.cbegin()), 2, 3.5); - assert(i == next(c.begin(), 2)); + i = c.emplace_after(std::next(c.cbegin()), 2, 3.5); + assert(i == std::next(c.begin(), 2)); assert(c.front() == Emplaceable()); - assert(*next(c.begin()) == Emplaceable(1, 2.5)); - assert(*next(c.begin(), 2) == Emplaceable(2, 3.5)); + assert(*std::next(c.begin()) == Emplaceable(1, 2.5)); + assert(*std::next(c.begin(), 2) == Emplaceable(2, 3.5)); assert(std::distance(c.begin(), c.end()) == 3); i = c.emplace_after(c.cbegin(), 3, 4.5); - assert(i == next(c.begin())); + assert(i == std::next(c.begin())); assert(c.front() == Emplaceable()); - assert(*next(c.begin(), 1) == Emplaceable(3, 4.5)); - assert(*next(c.begin(), 2) == Emplaceable(1, 2.5)); - assert(*next(c.begin(), 3) == Emplaceable(2, 3.5)); + assert(*std::next(c.begin(), 1) == Emplaceable(3, 4.5)); + assert(*std::next(c.begin(), 2) == Emplaceable(1, 2.5)); + assert(*std::next(c.begin(), 3) == Emplaceable(2, 3.5)); assert(std::distance(c.begin(), c.end()) == 4); } { @@ -64,24 +64,24 @@ assert(std::distance(c.begin(), c.end()) == 1); i = c.emplace_after(c.cbegin(), 1, 2.5); - assert(i == next(c.begin())); + assert(i == std::next(c.begin())); assert(c.front() == Emplaceable()); - assert(*next(c.begin()) == Emplaceable(1, 2.5)); + assert(*std::next(c.begin()) == Emplaceable(1, 2.5)); assert(std::distance(c.begin(), c.end()) == 2); - i = c.emplace_after(next(c.cbegin()), 2, 3.5); - assert(i == next(c.begin(), 2)); + i = c.emplace_after(std::next(c.cbegin()), 2, 3.5); + assert(i == std::next(c.begin(), 2)); assert(c.front() == Emplaceable()); - assert(*next(c.begin()) == Emplaceable(1, 2.5)); - assert(*next(c.begin(), 2) == Emplaceable(2, 3.5)); + assert(*std::next(c.begin()) == Emplaceable(1, 2.5)); + assert(*std::next(c.begin(), 2) == Emplaceable(2, 3.5)); assert(std::distance(c.begin(), c.end()) == 3); i = c.emplace_after(c.cbegin(), 3, 4.5); - assert(i == next(c.begin())); + assert(i == std::next(c.begin())); assert(c.front() == Emplaceable()); - assert(*next(c.begin(), 1) == Emplaceable(3, 4.5)); - assert(*next(c.begin(), 2) == Emplaceable(1, 2.5)); - assert(*next(c.begin(), 3) == Emplaceable(2, 3.5)); + assert(*std::next(c.begin(), 1) == Emplaceable(3, 4.5)); + assert(*std::next(c.begin(), 2) == Emplaceable(1, 2.5)); + assert(*std::next(c.begin(), 3) == Emplaceable(2, 3.5)); assert(std::distance(c.begin(), c.end()) == 4); } diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/emplace_front.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/emplace_front.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/emplace_front.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/emplace_front.pass.cpp @@ -42,7 +42,7 @@ c.emplace_front(1, 2.5); assert(c.front() == Emplaceable(1, 2.5)); #endif - assert(*next(c.begin()) == Emplaceable()); + assert(*std::next(c.begin()) == Emplaceable()); assert(std::distance(c.begin(), c.end()) == 2); } { @@ -64,7 +64,7 @@ c.emplace_front(1, 2.5); assert(c.front() == Emplaceable(1, 2.5)); #endif - assert(*next(c.begin()) == Emplaceable()); + assert(*std::next(c.begin()) == Emplaceable()); assert(std::distance(c.begin(), c.end()) == 2); } diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/erase_after_many.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/erase_after_many.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/erase_after_many.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/erase_after_many.pass.cpp @@ -24,62 +24,62 @@ const T t[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; C c(std::begin(t), std::end(t)); - C::iterator i = c.erase_after(next(c.cbefore_begin(), 4), next(c.cbefore_begin(), 4)); - assert(i == next(c.cbefore_begin(), 4)); + C::iterator i = c.erase_after(std::next(c.cbefore_begin(), 4), std::next(c.cbefore_begin(), 4)); + assert(i == std::next(c.cbefore_begin(), 4)); assert(std::distance(c.begin(), c.end()) == 10); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 3); - assert(*next(c.begin(), 4) == 4); - assert(*next(c.begin(), 5) == 5); - assert(*next(c.begin(), 6) == 6); - assert(*next(c.begin(), 7) == 7); - assert(*next(c.begin(), 8) == 8); - assert(*next(c.begin(), 9) == 9); - - i = c.erase_after(next(c.cbefore_begin(), 2), next(c.cbefore_begin(), 5)); - assert(i == next(c.begin(), 2)); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 3); + assert(*std::next(c.begin(), 4) == 4); + assert(*std::next(c.begin(), 5) == 5); + assert(*std::next(c.begin(), 6) == 6); + assert(*std::next(c.begin(), 7) == 7); + assert(*std::next(c.begin(), 8) == 8); + assert(*std::next(c.begin(), 9) == 9); + + i = c.erase_after(std::next(c.cbefore_begin(), 2), std::next(c.cbefore_begin(), 5)); + assert(i == std::next(c.begin(), 2)); assert(std::distance(c.begin(), c.end()) == 8); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 4); - assert(*next(c.begin(), 3) == 5); - assert(*next(c.begin(), 4) == 6); - assert(*next(c.begin(), 5) == 7); - assert(*next(c.begin(), 6) == 8); - assert(*next(c.begin(), 7) == 9); - - i = c.erase_after(next(c.cbefore_begin(), 2), next(c.cbefore_begin(), 3)); - assert(i == next(c.begin(), 2)); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 4); + assert(*std::next(c.begin(), 3) == 5); + assert(*std::next(c.begin(), 4) == 6); + assert(*std::next(c.begin(), 5) == 7); + assert(*std::next(c.begin(), 6) == 8); + assert(*std::next(c.begin(), 7) == 9); + + i = c.erase_after(std::next(c.cbefore_begin(), 2), std::next(c.cbefore_begin(), 3)); + assert(i == std::next(c.begin(), 2)); assert(std::distance(c.begin(), c.end()) == 8); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 4); - assert(*next(c.begin(), 3) == 5); - assert(*next(c.begin(), 4) == 6); - assert(*next(c.begin(), 5) == 7); - assert(*next(c.begin(), 6) == 8); - assert(*next(c.begin(), 7) == 9); - - i = c.erase_after(next(c.cbefore_begin(), 5), next(c.cbefore_begin(), 9)); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 4); + assert(*std::next(c.begin(), 3) == 5); + assert(*std::next(c.begin(), 4) == 6); + assert(*std::next(c.begin(), 5) == 7); + assert(*std::next(c.begin(), 6) == 8); + assert(*std::next(c.begin(), 7) == 9); + + i = c.erase_after(std::next(c.cbefore_begin(), 5), std::next(c.cbefore_begin(), 9)); assert(i == c.end()); assert(std::distance(c.begin(), c.end()) == 5); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 4); - assert(*next(c.begin(), 3) == 5); - assert(*next(c.begin(), 4) == 6); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 4); + assert(*std::next(c.begin(), 3) == 5); + assert(*std::next(c.begin(), 4) == 6); - i = c.erase_after(next(c.cbefore_begin(), 0), next(c.cbefore_begin(), 2)); + i = c.erase_after(std::next(c.cbefore_begin(), 0), std::next(c.cbefore_begin(), 2)); assert(i == c.begin()); assert(std::distance(c.begin(), c.end()) == 4); - assert(*next(c.begin(), 0) == 1); - assert(*next(c.begin(), 1) == 4); - assert(*next(c.begin(), 2) == 5); - assert(*next(c.begin(), 3) == 6); + assert(*std::next(c.begin(), 0) == 1); + assert(*std::next(c.begin(), 1) == 4); + assert(*std::next(c.begin(), 2) == 5); + assert(*std::next(c.begin(), 3) == 6); - i = c.erase_after(next(c.cbefore_begin(), 0), next(c.cbefore_begin(), 5)); + i = c.erase_after(std::next(c.cbefore_begin(), 0), std::next(c.cbefore_begin(), 5)); assert(i == c.begin()); assert(i == c.end()); assert(std::distance(c.begin(), c.end()) == 0); @@ -91,62 +91,62 @@ const T t[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; C c(std::begin(t), std::end(t)); - C::iterator i = c.erase_after(next(c.cbefore_begin(), 4), next(c.cbefore_begin(), 4)); - assert(i == next(c.cbefore_begin(), 4)); + C::iterator i = c.erase_after(std::next(c.cbefore_begin(), 4), std::next(c.cbefore_begin(), 4)); + assert(i == std::next(c.cbefore_begin(), 4)); assert(std::distance(c.begin(), c.end()) == 10); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 3); - assert(*next(c.begin(), 4) == 4); - assert(*next(c.begin(), 5) == 5); - assert(*next(c.begin(), 6) == 6); - assert(*next(c.begin(), 7) == 7); - assert(*next(c.begin(), 8) == 8); - assert(*next(c.begin(), 9) == 9); - - i = c.erase_after(next(c.cbefore_begin(), 2), next(c.cbefore_begin(), 5)); - assert(i == next(c.begin(), 2)); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 3); + assert(*std::next(c.begin(), 4) == 4); + assert(*std::next(c.begin(), 5) == 5); + assert(*std::next(c.begin(), 6) == 6); + assert(*std::next(c.begin(), 7) == 7); + assert(*std::next(c.begin(), 8) == 8); + assert(*std::next(c.begin(), 9) == 9); + + i = c.erase_after(std::next(c.cbefore_begin(), 2), std::next(c.cbefore_begin(), 5)); + assert(i == std::next(c.begin(), 2)); assert(std::distance(c.begin(), c.end()) == 8); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 4); - assert(*next(c.begin(), 3) == 5); - assert(*next(c.begin(), 4) == 6); - assert(*next(c.begin(), 5) == 7); - assert(*next(c.begin(), 6) == 8); - assert(*next(c.begin(), 7) == 9); - - i = c.erase_after(next(c.cbefore_begin(), 2), next(c.cbefore_begin(), 3)); - assert(i == next(c.begin(), 2)); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 4); + assert(*std::next(c.begin(), 3) == 5); + assert(*std::next(c.begin(), 4) == 6); + assert(*std::next(c.begin(), 5) == 7); + assert(*std::next(c.begin(), 6) == 8); + assert(*std::next(c.begin(), 7) == 9); + + i = c.erase_after(std::next(c.cbefore_begin(), 2), std::next(c.cbefore_begin(), 3)); + assert(i == std::next(c.begin(), 2)); assert(std::distance(c.begin(), c.end()) == 8); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 4); - assert(*next(c.begin(), 3) == 5); - assert(*next(c.begin(), 4) == 6); - assert(*next(c.begin(), 5) == 7); - assert(*next(c.begin(), 6) == 8); - assert(*next(c.begin(), 7) == 9); - - i = c.erase_after(next(c.cbefore_begin(), 5), next(c.cbefore_begin(), 9)); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 4); + assert(*std::next(c.begin(), 3) == 5); + assert(*std::next(c.begin(), 4) == 6); + assert(*std::next(c.begin(), 5) == 7); + assert(*std::next(c.begin(), 6) == 8); + assert(*std::next(c.begin(), 7) == 9); + + i = c.erase_after(std::next(c.cbefore_begin(), 5), std::next(c.cbefore_begin(), 9)); assert(i == c.end()); assert(std::distance(c.begin(), c.end()) == 5); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 4); - assert(*next(c.begin(), 3) == 5); - assert(*next(c.begin(), 4) == 6); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 4); + assert(*std::next(c.begin(), 3) == 5); + assert(*std::next(c.begin(), 4) == 6); - i = c.erase_after(next(c.cbefore_begin(), 0), next(c.cbefore_begin(), 2)); + i = c.erase_after(std::next(c.cbefore_begin(), 0), std::next(c.cbefore_begin(), 2)); assert(i == c.begin()); assert(std::distance(c.begin(), c.end()) == 4); - assert(*next(c.begin(), 0) == 1); - assert(*next(c.begin(), 1) == 4); - assert(*next(c.begin(), 2) == 5); - assert(*next(c.begin(), 3) == 6); + assert(*std::next(c.begin(), 0) == 1); + assert(*std::next(c.begin(), 1) == 4); + assert(*std::next(c.begin(), 2) == 5); + assert(*std::next(c.begin(), 3) == 6); - i = c.erase_after(next(c.cbefore_begin(), 0), next(c.cbefore_begin(), 5)); + i = c.erase_after(std::next(c.cbefore_begin(), 0), std::next(c.cbefore_begin(), 5)); assert(i == c.begin()); assert(i == c.end()); assert(std::distance(c.begin(), c.end()) == 0); diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/erase_after_one.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/erase_after_one.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/erase_after_one.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/erase_after_one.pass.cpp @@ -24,33 +24,33 @@ const T t[] = {0, 1, 2, 3, 4}; C c(std::begin(t), std::end(t)); - C::iterator i = c.erase_after(next(c.cbefore_begin(), 4)); + C::iterator i = c.erase_after(std::next(c.cbefore_begin(), 4)); assert(i == c.end()); assert(std::distance(c.begin(), c.end()) == 4); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 3); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 3); - i = c.erase_after(next(c.cbefore_begin(), 0)); + i = c.erase_after(std::next(c.cbefore_begin(), 0)); assert(i == c.begin()); assert(std::distance(c.begin(), c.end()) == 3); - assert(*next(c.begin(), 0) == 1); - assert(*next(c.begin(), 1) == 2); - assert(*next(c.begin(), 2) == 3); + assert(*std::next(c.begin(), 0) == 1); + assert(*std::next(c.begin(), 1) == 2); + assert(*std::next(c.begin(), 2) == 3); - i = c.erase_after(next(c.cbefore_begin(), 1)); - assert(i == next(c.begin())); + i = c.erase_after(std::next(c.cbefore_begin(), 1)); + assert(i == std::next(c.begin())); assert(std::distance(c.begin(), c.end()) == 2); - assert(*next(c.begin(), 0) == 1); - assert(*next(c.begin(), 1) == 3); + assert(*std::next(c.begin(), 0) == 1); + assert(*std::next(c.begin(), 1) == 3); - i = c.erase_after(next(c.cbefore_begin(), 1)); + i = c.erase_after(std::next(c.cbefore_begin(), 1)); assert(i == c.end()); assert(std::distance(c.begin(), c.end()) == 1); - assert(*next(c.begin(), 0) == 1); + assert(*std::next(c.begin(), 0) == 1); - i = c.erase_after(next(c.cbefore_begin(), 0)); + i = c.erase_after(std::next(c.cbefore_begin(), 0)); assert(i == c.begin()); assert(i == c.end()); assert(std::distance(c.begin(), c.end()) == 0); @@ -62,33 +62,33 @@ const T t[] = {0, 1, 2, 3, 4}; C c(std::begin(t), std::end(t)); - C::iterator i = c.erase_after(next(c.cbefore_begin(), 4)); + C::iterator i = c.erase_after(std::next(c.cbefore_begin(), 4)); assert(i == c.end()); assert(std::distance(c.begin(), c.end()) == 4); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 3); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 3); - i = c.erase_after(next(c.cbefore_begin(), 0)); + i = c.erase_after(std::next(c.cbefore_begin(), 0)); assert(i == c.begin()); assert(std::distance(c.begin(), c.end()) == 3); - assert(*next(c.begin(), 0) == 1); - assert(*next(c.begin(), 1) == 2); - assert(*next(c.begin(), 2) == 3); + assert(*std::next(c.begin(), 0) == 1); + assert(*std::next(c.begin(), 1) == 2); + assert(*std::next(c.begin(), 2) == 3); - i = c.erase_after(next(c.cbefore_begin(), 1)); - assert(i == next(c.begin())); + i = c.erase_after(std::next(c.cbefore_begin(), 1)); + assert(i == std::next(c.begin())); assert(std::distance(c.begin(), c.end()) == 2); - assert(*next(c.begin(), 0) == 1); - assert(*next(c.begin(), 1) == 3); + assert(*std::next(c.begin(), 0) == 1); + assert(*std::next(c.begin(), 1) == 3); - i = c.erase_after(next(c.cbefore_begin(), 1)); + i = c.erase_after(std::next(c.cbefore_begin(), 1)); assert(i == c.end()); assert(std::distance(c.begin(), c.end()) == 1); - assert(*next(c.begin(), 0) == 1); + assert(*std::next(c.begin(), 0) == 1); - i = c.erase_after(next(c.cbefore_begin(), 0)); + i = c.erase_after(std::next(c.cbefore_begin(), 0)); assert(i == c.begin()); assert(i == c.end()); assert(std::distance(c.begin(), c.end()) == 0); diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_const.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_const.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_const.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_const.pass.cpp @@ -30,24 +30,24 @@ assert(std::distance(c.begin(), c.end()) == 1); i = c.insert_after(c.cbegin(), 1); - assert(i == next(c.begin())); + assert(i == std::next(c.begin())); assert(c.front() == 0); - assert(*next(c.begin()) == 1); + assert(*std::next(c.begin()) == 1); assert(std::distance(c.begin(), c.end()) == 2); - i = c.insert_after(next(c.cbegin()), 2); - assert(i == next(c.begin(), 2)); + i = c.insert_after(std::next(c.cbegin()), 2); + assert(i == std::next(c.begin(), 2)); assert(c.front() == 0); - assert(*next(c.begin()) == 1); - assert(*next(c.begin(), 2) == 2); + assert(*std::next(c.begin()) == 1); + assert(*std::next(c.begin(), 2) == 2); assert(std::distance(c.begin(), c.end()) == 3); i = c.insert_after(c.cbegin(), 3); - assert(i == next(c.begin())); + assert(i == std::next(c.begin())); assert(c.front() == 0); - assert(*next(c.begin(), 1) == 3); - assert(*next(c.begin(), 2) == 1); - assert(*next(c.begin(), 3) == 2); + assert(*std::next(c.begin(), 1) == 3); + assert(*std::next(c.begin(), 2) == 1); + assert(*std::next(c.begin(), 3) == 2); assert(std::distance(c.begin(), c.end()) == 4); } #if TEST_STD_VER >= 11 @@ -63,24 +63,24 @@ assert(std::distance(c.begin(), c.end()) == 1); i = c.insert_after(c.cbegin(), 1); - assert(i == next(c.begin())); + assert(i == std::next(c.begin())); assert(c.front() == 0); - assert(*next(c.begin()) == 1); + assert(*std::next(c.begin()) == 1); assert(std::distance(c.begin(), c.end()) == 2); - i = c.insert_after(next(c.cbegin()), 2); - assert(i == next(c.begin(), 2)); + i = c.insert_after(std::next(c.cbegin()), 2); + assert(i == std::next(c.begin(), 2)); assert(c.front() == 0); - assert(*next(c.begin()) == 1); - assert(*next(c.begin(), 2) == 2); + assert(*std::next(c.begin()) == 1); + assert(*std::next(c.begin(), 2) == 2); assert(std::distance(c.begin(), c.end()) == 3); i = c.insert_after(c.cbegin(), 3); - assert(i == next(c.begin())); + assert(i == std::next(c.begin())); assert(c.front() == 0); - assert(*next(c.begin(), 1) == 3); - assert(*next(c.begin(), 2) == 1); - assert(*next(c.begin(), 3) == 2); + assert(*std::next(c.begin(), 1) == 3); + assert(*std::next(c.begin(), 2) == 1); + assert(*std::next(c.begin(), 3) == 2); assert(std::distance(c.begin(), c.end()) == 4); } #endif diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_init.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_init.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_init.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_init.pass.cpp @@ -30,20 +30,20 @@ assert(std::distance(c.begin(), c.end()) == 0); i = c.insert_after(c.cbefore_begin(), {0, 1, 2}); - assert(i == next(c.before_begin(), 3)); + assert(i == std::next(c.before_begin(), 3)); assert(std::distance(c.begin(), c.end()) == 3); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); i = c.insert_after(c.begin(), {3, 4}); - assert(i == next(c.begin(), 2)); + assert(i == std::next(c.begin(), 2)); assert(std::distance(c.begin(), c.end()) == 5); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 3); - assert(*next(c.begin(), 2) == 4); - assert(*next(c.begin(), 3) == 1); - assert(*next(c.begin(), 4) == 2); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 3); + assert(*std::next(c.begin(), 2) == 4); + assert(*std::next(c.begin(), 3) == 1); + assert(*std::next(c.begin(), 4) == 2); } { typedef int T; @@ -55,20 +55,20 @@ assert(std::distance(c.begin(), c.end()) == 0); i = c.insert_after(c.cbefore_begin(), {0, 1, 2}); - assert(i == next(c.before_begin(), 3)); + assert(i == std::next(c.before_begin(), 3)); assert(std::distance(c.begin(), c.end()) == 3); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); i = c.insert_after(c.begin(), {3, 4}); - assert(i == next(c.begin(), 2)); + assert(i == std::next(c.begin(), 2)); assert(std::distance(c.begin(), c.end()) == 5); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 3); - assert(*next(c.begin(), 2) == 4); - assert(*next(c.begin(), 3) == 1); - assert(*next(c.begin(), 4) == 2); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 3); + assert(*std::next(c.begin(), 2) == 4); + assert(*std::next(c.begin(), 3) == 1); + assert(*std::next(c.begin(), 4) == 2); } return 0; diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_range.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_range.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_range.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_range.pass.cpp @@ -33,20 +33,20 @@ assert(std::distance(c.begin(), c.end()) == 0); i = c.insert_after(c.cbefore_begin(), J(t), J(t+3)); - assert(i == next(c.before_begin(), 3)); + assert(i == std::next(c.before_begin(), 3)); assert(std::distance(c.begin(), c.end()) == 3); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); i = c.insert_after(c.begin(), J(t+3), J(t+5)); - assert(i == next(c.begin(), 2)); + assert(i == std::next(c.begin(), 2)); assert(std::distance(c.begin(), c.end()) == 5); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 3); - assert(*next(c.begin(), 2) == 4); - assert(*next(c.begin(), 3) == 1); - assert(*next(c.begin(), 4) == 2); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 3); + assert(*std::next(c.begin(), 2) == 4); + assert(*std::next(c.begin(), 3) == 1); + assert(*std::next(c.begin(), 4) == 2); } #if TEST_STD_VER >= 11 { @@ -61,20 +61,20 @@ assert(std::distance(c.begin(), c.end()) == 0); i = c.insert_after(c.cbefore_begin(), J(t), J(t+3)); - assert(i == next(c.before_begin(), 3)); + assert(i == std::next(c.before_begin(), 3)); assert(std::distance(c.begin(), c.end()) == 3); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); i = c.insert_after(c.begin(), J(t+3), J(t+5)); - assert(i == next(c.begin(), 2)); + assert(i == std::next(c.begin(), 2)); assert(std::distance(c.begin(), c.end()) == 5); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 3); - assert(*next(c.begin(), 2) == 4); - assert(*next(c.begin(), 3) == 1); - assert(*next(c.begin(), 4) == 2); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 3); + assert(*std::next(c.begin(), 2) == 4); + assert(*std::next(c.begin(), 3) == 1); + assert(*std::next(c.begin(), 4) == 2); } #endif diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_rv.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_rv.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_rv.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_rv.pass.cpp @@ -33,24 +33,24 @@ assert(std::distance(c.begin(), c.end()) == 1); i = c.insert_after(c.cbegin(), 1); - assert(i == next(c.begin())); + assert(i == std::next(c.begin())); assert(c.front() == 0); - assert(*next(c.begin()) == 1); + assert(*std::next(c.begin()) == 1); assert(std::distance(c.begin(), c.end()) == 2); - i = c.insert_after(next(c.cbegin()), 2); - assert(i == next(c.begin(), 2)); + i = c.insert_after(std::next(c.cbegin()), 2); + assert(i == std::next(c.begin(), 2)); assert(c.front() == 0); - assert(*next(c.begin()) == 1); - assert(*next(c.begin(), 2) == 2); + assert(*std::next(c.begin()) == 1); + assert(*std::next(c.begin(), 2) == 2); assert(std::distance(c.begin(), c.end()) == 3); i = c.insert_after(c.cbegin(), 3); - assert(i == next(c.begin())); + assert(i == std::next(c.begin())); assert(c.front() == 0); - assert(*next(c.begin(), 1) == 3); - assert(*next(c.begin(), 2) == 1); - assert(*next(c.begin(), 3) == 2); + assert(*std::next(c.begin(), 1) == 3); + assert(*std::next(c.begin(), 2) == 1); + assert(*std::next(c.begin(), 3) == 2); assert(std::distance(c.begin(), c.end()) == 4); } { @@ -65,24 +65,24 @@ assert(std::distance(c.begin(), c.end()) == 1); i = c.insert_after(c.cbegin(), 1); - assert(i == next(c.begin())); + assert(i == std::next(c.begin())); assert(c.front() == 0); - assert(*next(c.begin()) == 1); + assert(*std::next(c.begin()) == 1); assert(std::distance(c.begin(), c.end()) == 2); - i = c.insert_after(next(c.cbegin()), 2); - assert(i == next(c.begin(), 2)); + i = c.insert_after(std::next(c.cbegin()), 2); + assert(i == std::next(c.begin(), 2)); assert(c.front() == 0); - assert(*next(c.begin()) == 1); - assert(*next(c.begin(), 2) == 2); + assert(*std::next(c.begin()) == 1); + assert(*std::next(c.begin(), 2) == 2); assert(std::distance(c.begin(), c.end()) == 3); i = c.insert_after(c.cbegin(), 3); - assert(i == next(c.begin())); + assert(i == std::next(c.begin())); assert(c.front() == 0); - assert(*next(c.begin(), 1) == 3); - assert(*next(c.begin(), 2) == 1); - assert(*next(c.begin(), 3) == 2); + assert(*std::next(c.begin(), 1) == 3); + assert(*std::next(c.begin(), 2) == 1); + assert(*std::next(c.begin(), 3) == 2); assert(std::distance(c.begin(), c.end()) == 4); } diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_size_value.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_size_value.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_size_value.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_size_value.pass.cpp @@ -28,20 +28,20 @@ assert(std::distance(c.begin(), c.end()) == 0); i = c.insert_after(c.cbefore_begin(), 3, 3); - assert(i == next(c.before_begin(), 3)); + assert(i == std::next(c.before_begin(), 3)); assert(std::distance(c.begin(), c.end()) == 3); - assert(*next(c.begin(), 0) == 3); - assert(*next(c.begin(), 1) == 3); - assert(*next(c.begin(), 2) == 3); + assert(*std::next(c.begin(), 0) == 3); + assert(*std::next(c.begin(), 1) == 3); + assert(*std::next(c.begin(), 2) == 3); i = c.insert_after(c.begin(), 2, 2); - assert(i == next(c.begin(), 2)); + assert(i == std::next(c.begin(), 2)); assert(std::distance(c.begin(), c.end()) == 5); - assert(*next(c.begin(), 0) == 3); - assert(*next(c.begin(), 1) == 2); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 3); - assert(*next(c.begin(), 4) == 3); + assert(*std::next(c.begin(), 0) == 3); + assert(*std::next(c.begin(), 1) == 2); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 3); + assert(*std::next(c.begin(), 4) == 3); } #if TEST_STD_VER >= 11 { @@ -54,20 +54,20 @@ assert(std::distance(c.begin(), c.end()) == 0); i = c.insert_after(c.cbefore_begin(), 3, 3); - assert(i == next(c.before_begin(), 3)); + assert(i == std::next(c.before_begin(), 3)); assert(std::distance(c.begin(), c.end()) == 3); - assert(*next(c.begin(), 0) == 3); - assert(*next(c.begin(), 1) == 3); - assert(*next(c.begin(), 2) == 3); + assert(*std::next(c.begin(), 0) == 3); + assert(*std::next(c.begin(), 1) == 3); + assert(*std::next(c.begin(), 2) == 3); i = c.insert_after(c.begin(), 2, 2); - assert(i == next(c.begin(), 2)); + assert(i == std::next(c.begin(), 2)); assert(std::distance(c.begin(), c.end()) == 5); - assert(*next(c.begin(), 0) == 3); - assert(*next(c.begin(), 1) == 2); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 3); - assert(*next(c.begin(), 4) == 3); + assert(*std::next(c.begin(), 0) == 3); + assert(*std::next(c.begin(), 1) == 2); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 3); + assert(*std::next(c.begin(), 4) == 3); } #endif diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/push_front_const.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/push_front_const.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/push_front_const.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/push_front_const.pass.cpp @@ -27,7 +27,7 @@ assert(std::distance(c.begin(), c.end()) == 1); c.push_front(3); assert(c.front() == 3); - assert(*next(c.begin()) == 1); + assert(*std::next(c.begin()) == 1); assert(std::distance(c.begin(), c.end()) == 2); } #if TEST_STD_VER >= 11 @@ -40,7 +40,7 @@ assert(std::distance(c.begin(), c.end()) == 1); c.push_front(3); assert(c.front() == 3); - assert(*next(c.begin()) == 1); + assert(*std::next(c.begin()) == 1); assert(std::distance(c.begin(), c.end()) == 2); } #endif diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/push_front_rv.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/push_front_rv.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/push_front_rv.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/push_front_rv.pass.cpp @@ -30,7 +30,7 @@ assert(std::distance(c.begin(), c.end()) == 1); c.push_front(3); assert(c.front() == 3); - assert(*next(c.begin()) == 1); + assert(*std::next(c.begin()) == 1); assert(std::distance(c.begin(), c.end()) == 2); } { @@ -42,7 +42,7 @@ assert(std::distance(c.begin(), c.end()) == 1); c.push_front(3); assert(c.front() == 3); - assert(*next(c.begin()) == 1); + assert(*std::next(c.begin()) == 1); assert(std::distance(c.begin(), c.end()) == 2); } diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/resize_size.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/resize_size.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/resize_size.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/resize_size.pass.cpp @@ -42,27 +42,27 @@ c.resize(3); assert(std::distance(c.begin(), c.end()) == 3); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); c.resize(6); assert(std::distance(c.begin(), c.end()) == 6); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 0); - assert(*next(c.begin(), 4) == 0); - assert(*next(c.begin(), 5) == 0); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 0); + assert(*std::next(c.begin(), 4) == 0); + assert(*std::next(c.begin(), 5) == 0); c.resize(6); assert(std::distance(c.begin(), c.end()) == 6); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 0); - assert(*next(c.begin(), 4) == 0); - assert(*next(c.begin(), 5) == 0); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 0); + assert(*std::next(c.begin(), 4) == 0); + assert(*std::next(c.begin(), 5) == 0); } #if TEST_STD_VER >= 11 { @@ -88,27 +88,27 @@ c.resize(3); assert(std::distance(c.begin(), c.end()) == 3); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); c.resize(6); assert(std::distance(c.begin(), c.end()) == 6); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 0); - assert(*next(c.begin(), 4) == 0); - assert(*next(c.begin(), 5) == 0); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 0); + assert(*std::next(c.begin(), 4) == 0); + assert(*std::next(c.begin(), 5) == 0); c.resize(6); assert(std::distance(c.begin(), c.end()) == 6); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 0); - assert(*next(c.begin(), 4) == 0); - assert(*next(c.begin(), 5) == 0); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 0); + assert(*std::next(c.begin(), 4) == 0); + assert(*std::next(c.begin(), 5) == 0); } #endif diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/resize_size_value.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/resize_size_value.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/resize_size_value.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/resize_size_value.pass.cpp @@ -31,27 +31,27 @@ c.resize(3, 10); assert(std::distance(c.begin(), c.end()) == 3); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); c.resize(6, 10); assert(std::distance(c.begin(), c.end()) == 6); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 10); - assert(*next(c.begin(), 4) == 10); - assert(*next(c.begin(), 5) == 10); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 10); + assert(*std::next(c.begin(), 4) == 10); + assert(*std::next(c.begin(), 5) == 10); c.resize(6, 12); assert(std::distance(c.begin(), c.end()) == 6); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 10); - assert(*next(c.begin(), 4) == 10); - assert(*next(c.begin(), 5) == 10); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 10); + assert(*std::next(c.begin(), 4) == 10); + assert(*std::next(c.begin(), 5) == 10); } #if TEST_STD_VER >= 11 { @@ -62,27 +62,27 @@ c.resize(3, 10); assert(std::distance(c.begin(), c.end()) == 3); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); c.resize(6, 10); assert(std::distance(c.begin(), c.end()) == 6); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 10); - assert(*next(c.begin(), 4) == 10); - assert(*next(c.begin(), 5) == 10); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 10); + assert(*std::next(c.begin(), 4) == 10); + assert(*std::next(c.begin(), 5) == 10); c.resize(6, 12); assert(std::distance(c.begin(), c.end()) == 6); - assert(*next(c.begin(), 0) == 0); - assert(*next(c.begin(), 1) == 1); - assert(*next(c.begin(), 2) == 2); - assert(*next(c.begin(), 3) == 10); - assert(*next(c.begin(), 4) == 10); - assert(*next(c.begin(), 5) == 10); + assert(*std::next(c.begin(), 0) == 0); + assert(*std::next(c.begin(), 1) == 1); + assert(*std::next(c.begin(), 2) == 2); + assert(*std::next(c.begin(), 3) == 10); + assert(*std::next(c.begin(), 4) == 10); + assert(*std::next(c.begin(), 5) == 10); } { // Test that the allocator's construct method is being used to diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_flist.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_flist.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_flist.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_flist.pass.cpp @@ -51,7 +51,7 @@ C c1(std::begin(t1), std::end(t1)); C c2(t2, t2+l); - c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2)); + c1.splice_after(std::next(c1.cbefore_begin(), p), std::move(c2)); testd(c1, p, l); } } @@ -67,7 +67,7 @@ C c1(std::begin(t1), std::end(t1)); C c2(t2, t2+l); - c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2)); + c1.splice_after(std::next(c1.cbefore_begin(), p), std::move(c2)); testd(c1, p, l); } } diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_one.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_one.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_one.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_one.pass.cpp @@ -87,8 +87,8 @@ C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2), - next(c2.cbefore_begin(), f)); + c1.splice_after(std::next(c1.cbefore_begin(), p), std::move(c2), + std::next(c2.cbefore_begin(), f)); testd(c1, p, f); } } @@ -100,8 +100,8 @@ { C c1(std::begin(t1), std::end(t1)); - c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1), - next(c1.cbefore_begin(), f)); + c1.splice_after(std::next(c1.cbefore_begin(), p), std::move(c1), + std::next(c1.cbefore_begin(), f)); tests(c1, p, f); } } @@ -117,8 +117,8 @@ C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2), - next(c2.cbefore_begin(), f)); + c1.splice_after(std::next(c1.cbefore_begin(), p), std::move(c2), + std::next(c2.cbefore_begin(), f)); testd(c1, p, f); } } @@ -130,8 +130,8 @@ { C c1(std::begin(t1), std::end(t1)); - c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1), - next(c1.cbefore_begin(), f)); + c1.splice_after(std::next(c1.cbefore_begin(), p), std::move(c1), + std::next(c1.cbefore_begin(), f)); tests(c1, p, f); } } diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_range.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_range.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_range.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_range.pass.cpp @@ -91,8 +91,8 @@ C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2), - next(c2.cbefore_begin(), f), next(c2.cbefore_begin(), l)); + c1.splice_after(std::next(c1.cbefore_begin(), p), std::move(c2), + std::next(c2.cbefore_begin(), f), std::next(c2.cbefore_begin(), l)); testd(c1, p, f, l); } } @@ -107,16 +107,16 @@ { C c1(std::begin(t1), std::end(t1)); - c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1), - next(c1.cbefore_begin(), f), next(c1.cbefore_begin(), l)); + c1.splice_after(std::next(c1.cbefore_begin(), p), std::move(c1), + std::next(c1.cbefore_begin(), f), std::next(c1.cbefore_begin(), l)); tests(c1, p, f, l); } for (ptrdiff_t p = l; p <= size_t1; ++p) { C c1(std::begin(t1), std::end(t1)); - c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1), - next(c1.cbefore_begin(), f), next(c1.cbefore_begin(), l)); + c1.splice_after(std::next(c1.cbefore_begin(), p), std::move(c1), + std::next(c1.cbefore_begin(), f), std::next(c1.cbefore_begin(), l)); tests(c1, p, f, l); } } @@ -135,8 +135,8 @@ C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2), - next(c2.cbefore_begin(), f), next(c2.cbefore_begin(), l)); + c1.splice_after(std::next(c1.cbefore_begin(), p), std::move(c2), + std::next(c2.cbefore_begin(), f), std::next(c2.cbefore_begin(), l)); testd(c1, p, f, l); } } @@ -151,16 +151,16 @@ { C c1(std::begin(t1), std::end(t1)); - c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1), - next(c1.cbefore_begin(), f), next(c1.cbefore_begin(), l)); + c1.splice_after(std::next(c1.cbefore_begin(), p), std::move(c1), + std::next(c1.cbefore_begin(), f), std::next(c1.cbefore_begin(), l)); tests(c1, p, f, l); } for (ptrdiff_t p = l; p <= size_t1; ++p) { C c1(std::begin(t1), std::end(t1)); - c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1), - next(c1.cbefore_begin(), f), next(c1.cbefore_begin(), l)); + c1.splice_after(std::next(c1.cbefore_begin(), p), std::move(c1), + std::next(c1.cbefore_begin(), f), std::next(c1.cbefore_begin(), l)); tests(c1, p, f, l); } } diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.spec/member_swap.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.spec/member_swap.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.spec/member_swap.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.spec/member_swap.pass.cpp @@ -31,18 +31,18 @@ c1.swap(c2); assert(std::distance(c1.begin(), c1.end()) == 3); - assert(*next(c1.begin(), 0) == 10); - assert(*next(c1.begin(), 1) == 11); - assert(*next(c1.begin(), 2) == 12); + assert(*std::next(c1.begin(), 0) == 10); + assert(*std::next(c1.begin(), 1) == 11); + assert(*std::next(c1.begin(), 2) == 12); assert(c1.get_allocator().get_id() == 1); assert(std::distance(c2.begin(), c2.end()) == 6); - assert(*next(c2.begin(), 0) == 0); - assert(*next(c2.begin(), 1) == 1); - assert(*next(c2.begin(), 2) == 2); - assert(*next(c2.begin(), 3) == 3); - assert(*next(c2.begin(), 4) == 4); - assert(*next(c2.begin(), 5) == 5); + assert(*std::next(c2.begin(), 0) == 0); + assert(*std::next(c2.begin(), 1) == 1); + assert(*std::next(c2.begin(), 2) == 2); + assert(*std::next(c2.begin(), 3) == 3); + assert(*std::next(c2.begin(), 4) == 4); + assert(*std::next(c2.begin(), 5) == 5); assert(c2.get_allocator().get_id() == 2); } { @@ -58,12 +58,12 @@ assert(c1.get_allocator().get_id() == 1); assert(std::distance(c2.begin(), c2.end()) == 6); - assert(*next(c2.begin(), 0) == 0); - assert(*next(c2.begin(), 1) == 1); - assert(*next(c2.begin(), 2) == 2); - assert(*next(c2.begin(), 3) == 3); - assert(*next(c2.begin(), 4) == 4); - assert(*next(c2.begin(), 5) == 5); + assert(*std::next(c2.begin(), 0) == 0); + assert(*std::next(c2.begin(), 1) == 1); + assert(*std::next(c2.begin(), 2) == 2); + assert(*std::next(c2.begin(), 3) == 3); + assert(*std::next(c2.begin(), 4) == 4); + assert(*std::next(c2.begin(), 5) == 5); assert(c2.get_allocator().get_id() == 2); } { @@ -76,9 +76,9 @@ c1.swap(c2); assert(std::distance(c1.begin(), c1.end()) == 3); - assert(*next(c1.begin(), 0) == 10); - assert(*next(c1.begin(), 1) == 11); - assert(*next(c1.begin(), 2) == 12); + assert(*std::next(c1.begin(), 0) == 10); + assert(*std::next(c1.begin(), 1) == 11); + assert(*std::next(c1.begin(), 2) == 12); assert(c1.get_allocator().get_id() == 1); assert(std::distance(c2.begin(), c2.end()) == 0); @@ -110,18 +110,18 @@ c1.swap(c2); assert(std::distance(c1.begin(), c1.end()) == 3); - assert(*next(c1.begin(), 0) == 10); - assert(*next(c1.begin(), 1) == 11); - assert(*next(c1.begin(), 2) == 12); + assert(*std::next(c1.begin(), 0) == 10); + assert(*std::next(c1.begin(), 1) == 11); + assert(*std::next(c1.begin(), 2) == 12); assert(c1.get_allocator() == A(2)); assert(std::distance(c2.begin(), c2.end()) == 6); - assert(*next(c2.begin(), 0) == 0); - assert(*next(c2.begin(), 1) == 1); - assert(*next(c2.begin(), 2) == 2); - assert(*next(c2.begin(), 3) == 3); - assert(*next(c2.begin(), 4) == 4); - assert(*next(c2.begin(), 5) == 5); + assert(*std::next(c2.begin(), 0) == 0); + assert(*std::next(c2.begin(), 1) == 1); + assert(*std::next(c2.begin(), 2) == 2); + assert(*std::next(c2.begin(), 3) == 3); + assert(*std::next(c2.begin(), 4) == 4); + assert(*std::next(c2.begin(), 5) == 5); assert(c2.get_allocator() == A(1)); } { @@ -137,12 +137,12 @@ assert(c1.get_allocator() == A(2)); assert(std::distance(c2.begin(), c2.end()) == 6); - assert(*next(c2.begin(), 0) == 0); - assert(*next(c2.begin(), 1) == 1); - assert(*next(c2.begin(), 2) == 2); - assert(*next(c2.begin(), 3) == 3); - assert(*next(c2.begin(), 4) == 4); - assert(*next(c2.begin(), 5) == 5); + assert(*std::next(c2.begin(), 0) == 0); + assert(*std::next(c2.begin(), 1) == 1); + assert(*std::next(c2.begin(), 2) == 2); + assert(*std::next(c2.begin(), 3) == 3); + assert(*std::next(c2.begin(), 4) == 4); + assert(*std::next(c2.begin(), 5) == 5); assert(c2.get_allocator() == A(1)); } { @@ -155,9 +155,9 @@ c1.swap(c2); assert(std::distance(c1.begin(), c1.end()) == 3); - assert(*next(c1.begin(), 0) == 10); - assert(*next(c1.begin(), 1) == 11); - assert(*next(c1.begin(), 2) == 12); + assert(*std::next(c1.begin(), 0) == 10); + assert(*std::next(c1.begin(), 1) == 11); + assert(*std::next(c1.begin(), 2) == 12); assert(c1.get_allocator() == A(2)); assert(std::distance(c2.begin(), c2.end()) == 0); @@ -189,18 +189,18 @@ c1.swap(c2); assert(std::distance(c1.begin(), c1.end()) == 3); - assert(*next(c1.begin(), 0) == 10); - assert(*next(c1.begin(), 1) == 11); - assert(*next(c1.begin(), 2) == 12); + assert(*std::next(c1.begin(), 0) == 10); + assert(*std::next(c1.begin(), 1) == 11); + assert(*std::next(c1.begin(), 2) == 12); assert(c1.get_allocator() == A()); assert(std::distance(c2.begin(), c2.end()) == 6); - assert(*next(c2.begin(), 0) == 0); - assert(*next(c2.begin(), 1) == 1); - assert(*next(c2.begin(), 2) == 2); - assert(*next(c2.begin(), 3) == 3); - assert(*next(c2.begin(), 4) == 4); - assert(*next(c2.begin(), 5) == 5); + assert(*std::next(c2.begin(), 0) == 0); + assert(*std::next(c2.begin(), 1) == 1); + assert(*std::next(c2.begin(), 2) == 2); + assert(*std::next(c2.begin(), 3) == 3); + assert(*std::next(c2.begin(), 4) == 4); + assert(*std::next(c2.begin(), 5) == 5); assert(c2.get_allocator() == A()); } { @@ -216,12 +216,12 @@ assert(c1.get_allocator() == A()); assert(std::distance(c2.begin(), c2.end()) == 6); - assert(*next(c2.begin(), 0) == 0); - assert(*next(c2.begin(), 1) == 1); - assert(*next(c2.begin(), 2) == 2); - assert(*next(c2.begin(), 3) == 3); - assert(*next(c2.begin(), 4) == 4); - assert(*next(c2.begin(), 5) == 5); + assert(*std::next(c2.begin(), 0) == 0); + assert(*std::next(c2.begin(), 1) == 1); + assert(*std::next(c2.begin(), 2) == 2); + assert(*std::next(c2.begin(), 3) == 3); + assert(*std::next(c2.begin(), 4) == 4); + assert(*std::next(c2.begin(), 5) == 5); assert(c2.get_allocator() == A()); } { @@ -234,9 +234,9 @@ c1.swap(c2); assert(std::distance(c1.begin(), c1.end()) == 3); - assert(*next(c1.begin(), 0) == 10); - assert(*next(c1.begin(), 1) == 11); - assert(*next(c1.begin(), 2) == 12); + assert(*std::next(c1.begin(), 0) == 10); + assert(*std::next(c1.begin(), 1) == 11); + assert(*std::next(c1.begin(), 2) == 12); assert(c1.get_allocator() == A()); assert(std::distance(c2.begin(), c2.end()) == 0); diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.spec/non_member_swap.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.spec/non_member_swap.pass.cpp --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.spec/non_member_swap.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.spec/non_member_swap.pass.cpp @@ -32,18 +32,18 @@ swap(c1, c2); assert(std::distance(c1.begin(), c1.end()) == 3); - assert(*next(c1.begin(), 0) == 10); - assert(*next(c1.begin(), 1) == 11); - assert(*next(c1.begin(), 2) == 12); + assert(*std::next(c1.begin(), 0) == 10); + assert(*std::next(c1.begin(), 1) == 11); + assert(*std::next(c1.begin(), 2) == 12); assert(c1.get_allocator().get_id() == 1); assert(std::distance(c2.begin(), c2.end()) == 6); - assert(*next(c2.begin(), 0) == 0); - assert(*next(c2.begin(), 1) == 1); - assert(*next(c2.begin(), 2) == 2); - assert(*next(c2.begin(), 3) == 3); - assert(*next(c2.begin(), 4) == 4); - assert(*next(c2.begin(), 5) == 5); + assert(*std::next(c2.begin(), 0) == 0); + assert(*std::next(c2.begin(), 1) == 1); + assert(*std::next(c2.begin(), 2) == 2); + assert(*std::next(c2.begin(), 3) == 3); + assert(*std::next(c2.begin(), 4) == 4); + assert(*std::next(c2.begin(), 5) == 5); assert(c2.get_allocator().get_id() == 2); } { @@ -59,12 +59,12 @@ assert(c1.get_allocator().get_id() == 1); assert(std::distance(c2.begin(), c2.end()) == 6); - assert(*next(c2.begin(), 0) == 0); - assert(*next(c2.begin(), 1) == 1); - assert(*next(c2.begin(), 2) == 2); - assert(*next(c2.begin(), 3) == 3); - assert(*next(c2.begin(), 4) == 4); - assert(*next(c2.begin(), 5) == 5); + assert(*std::next(c2.begin(), 0) == 0); + assert(*std::next(c2.begin(), 1) == 1); + assert(*std::next(c2.begin(), 2) == 2); + assert(*std::next(c2.begin(), 3) == 3); + assert(*std::next(c2.begin(), 4) == 4); + assert(*std::next(c2.begin(), 5) == 5); assert(c2.get_allocator().get_id() == 2); } { @@ -77,9 +77,9 @@ swap(c1, c2); assert(std::distance(c1.begin(), c1.end()) == 3); - assert(*next(c1.begin(), 0) == 10); - assert(*next(c1.begin(), 1) == 11); - assert(*next(c1.begin(), 2) == 12); + assert(*std::next(c1.begin(), 0) == 10); + assert(*std::next(c1.begin(), 1) == 11); + assert(*std::next(c1.begin(), 2) == 12); assert(c1.get_allocator().get_id() == 1); assert(std::distance(c2.begin(), c2.end()) == 0); @@ -111,18 +111,18 @@ swap(c1, c2); assert(std::distance(c1.begin(), c1.end()) == 3); - assert(*next(c1.begin(), 0) == 10); - assert(*next(c1.begin(), 1) == 11); - assert(*next(c1.begin(), 2) == 12); + assert(*std::next(c1.begin(), 0) == 10); + assert(*std::next(c1.begin(), 1) == 11); + assert(*std::next(c1.begin(), 2) == 12); assert(c1.get_allocator() == A(2)); assert(std::distance(c2.begin(), c2.end()) == 6); - assert(*next(c2.begin(), 0) == 0); - assert(*next(c2.begin(), 1) == 1); - assert(*next(c2.begin(), 2) == 2); - assert(*next(c2.begin(), 3) == 3); - assert(*next(c2.begin(), 4) == 4); - assert(*next(c2.begin(), 5) == 5); + assert(*std::next(c2.begin(), 0) == 0); + assert(*std::next(c2.begin(), 1) == 1); + assert(*std::next(c2.begin(), 2) == 2); + assert(*std::next(c2.begin(), 3) == 3); + assert(*std::next(c2.begin(), 4) == 4); + assert(*std::next(c2.begin(), 5) == 5); assert(c2.get_allocator() == A(1)); } { @@ -138,12 +138,12 @@ assert(c1.get_allocator() == A(2)); assert(std::distance(c2.begin(), c2.end()) == 6); - assert(*next(c2.begin(), 0) == 0); - assert(*next(c2.begin(), 1) == 1); - assert(*next(c2.begin(), 2) == 2); - assert(*next(c2.begin(), 3) == 3); - assert(*next(c2.begin(), 4) == 4); - assert(*next(c2.begin(), 5) == 5); + assert(*std::next(c2.begin(), 0) == 0); + assert(*std::next(c2.begin(), 1) == 1); + assert(*std::next(c2.begin(), 2) == 2); + assert(*std::next(c2.begin(), 3) == 3); + assert(*std::next(c2.begin(), 4) == 4); + assert(*std::next(c2.begin(), 5) == 5); assert(c2.get_allocator() == A(1)); } { @@ -156,9 +156,9 @@ swap(c1, c2); assert(std::distance(c1.begin(), c1.end()) == 3); - assert(*next(c1.begin(), 0) == 10); - assert(*next(c1.begin(), 1) == 11); - assert(*next(c1.begin(), 2) == 12); + assert(*std::next(c1.begin(), 0) == 10); + assert(*std::next(c1.begin(), 1) == 11); + assert(*std::next(c1.begin(), 2) == 12); assert(c1.get_allocator() == A(2)); assert(std::distance(c2.begin(), c2.end()) == 0); @@ -190,18 +190,18 @@ swap(c1, c2); assert(std::distance(c1.begin(), c1.end()) == 3); - assert(*next(c1.begin(), 0) == 10); - assert(*next(c1.begin(), 1) == 11); - assert(*next(c1.begin(), 2) == 12); + assert(*std::next(c1.begin(), 0) == 10); + assert(*std::next(c1.begin(), 1) == 11); + assert(*std::next(c1.begin(), 2) == 12); assert(c1.get_allocator() == A()); assert(std::distance(c2.begin(), c2.end()) == 6); - assert(*next(c2.begin(), 0) == 0); - assert(*next(c2.begin(), 1) == 1); - assert(*next(c2.begin(), 2) == 2); - assert(*next(c2.begin(), 3) == 3); - assert(*next(c2.begin(), 4) == 4); - assert(*next(c2.begin(), 5) == 5); + assert(*std::next(c2.begin(), 0) == 0); + assert(*std::next(c2.begin(), 1) == 1); + assert(*std::next(c2.begin(), 2) == 2); + assert(*std::next(c2.begin(), 3) == 3); + assert(*std::next(c2.begin(), 4) == 4); + assert(*std::next(c2.begin(), 5) == 5); assert(c2.get_allocator() == A()); } { @@ -217,12 +217,12 @@ assert(c1.get_allocator() == A()); assert(std::distance(c2.begin(), c2.end()) == 6); - assert(*next(c2.begin(), 0) == 0); - assert(*next(c2.begin(), 1) == 1); - assert(*next(c2.begin(), 2) == 2); - assert(*next(c2.begin(), 3) == 3); - assert(*next(c2.begin(), 4) == 4); - assert(*next(c2.begin(), 5) == 5); + assert(*std::next(c2.begin(), 0) == 0); + assert(*std::next(c2.begin(), 1) == 1); + assert(*std::next(c2.begin(), 2) == 2); + assert(*std::next(c2.begin(), 3) == 3); + assert(*std::next(c2.begin(), 4) == 4); + assert(*std::next(c2.begin(), 5) == 5); assert(c2.get_allocator() == A()); } { @@ -235,9 +235,9 @@ swap(c1, c2); assert(std::distance(c1.begin(), c1.end()) == 3); - assert(*next(c1.begin(), 0) == 10); - assert(*next(c1.begin(), 1) == 11); - assert(*next(c1.begin(), 2) == 12); + assert(*std::next(c1.begin(), 0) == 10); + assert(*std::next(c1.begin(), 1) == 11); + assert(*std::next(c1.begin(), 2) == 12); assert(c1.get_allocator() == A()); assert(std::distance(c2.begin(), c2.end()) == 0); diff --git a/libcxx/test/std/containers/sequences/list/list.modifiers/erase_iter.pass.cpp b/libcxx/test/std/containers/sequences/list/list.modifiers/erase_iter.pass.cpp --- a/libcxx/test/std/containers/sequences/list/list.modifiers/erase_iter.pass.cpp +++ b/libcxx/test/std/containers/sequences/list/list.modifiers/erase_iter.pass.cpp @@ -28,7 +28,7 @@ assert(std::distance(l1.begin(), l1.end()) == 2); assert(*j == 3); assert(*l1.begin() == 1); - assert(*next(l1.begin()) == 3); + assert(*std::next(l1.begin()) == 3); j = l1.erase(j); assert(j == l1.end()); assert(l1.size() == 1); @@ -50,7 +50,7 @@ assert(std::distance(l1.begin(), l1.end()) == 2); assert(*j == 3); assert(*l1.begin() == 1); - assert(*next(l1.begin()) == 3); + assert(*std::next(l1.begin()) == 3); j = l1.erase(j); assert(j == l1.end()); assert(l1.size() == 1); diff --git a/libcxx/test/std/containers/sequences/list/list.modifiers/erase_iter_iter.pass.cpp b/libcxx/test/std/containers/sequences/list/list.modifiers/erase_iter_iter.pass.cpp --- a/libcxx/test/std/containers/sequences/list/list.modifiers/erase_iter_iter.pass.cpp +++ b/libcxx/test/std/containers/sequences/list/list.modifiers/erase_iter_iter.pass.cpp @@ -28,7 +28,7 @@ } { std::list l1(a1, a1+3); - std::list::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin())); + std::list::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin())); assert(l1.size() == 2); assert(std::distance(l1.cbegin(), l1.cend()) == 2); assert(i == l1.begin()); @@ -36,7 +36,7 @@ } { std::list l1(a1, a1+3); - std::list::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 2)); + std::list::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin(), 2)); assert(l1.size() == 1); assert(std::distance(l1.cbegin(), l1.cend()) == 1); assert(i == l1.begin()); @@ -44,7 +44,7 @@ } { std::list l1(a1, a1+3); - std::list::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 3)); + std::list::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin(), 3)); assert(l1.size() == 0); assert(std::distance(l1.cbegin(), l1.cend()) == 0); assert(i == l1.begin()); @@ -59,7 +59,7 @@ } { std::list> l1(a1, a1+3); - std::list>::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin())); + std::list>::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin())); assert(l1.size() == 2); assert(std::distance(l1.cbegin(), l1.cend()) == 2); assert(i == l1.begin()); @@ -67,7 +67,7 @@ } { std::list> l1(a1, a1+3); - std::list>::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 2)); + std::list>::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin(), 2)); assert(l1.size() == 1); assert(std::distance(l1.cbegin(), l1.cend()) == 1); assert(i == l1.begin()); @@ -75,7 +75,7 @@ } { std::list> l1(a1, a1+3); - std::list>::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 3)); + std::list>::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin(), 3)); assert(l1.size() == 0); assert(std::distance(l1.cbegin(), l1.cend()) == 0); assert(i == l1.begin()); diff --git a/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_initializer_list.pass.cpp b/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_initializer_list.pass.cpp --- a/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_initializer_list.pass.cpp +++ b/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_initializer_list.pass.cpp @@ -22,9 +22,9 @@ { { std::list d(10, 1); - std::list::iterator i = d.insert(next(d.cbegin(), 2), {3, 4, 5, 6}); + std::list::iterator i = d.insert(std::next(d.cbegin(), 2), {3, 4, 5, 6}); assert(d.size() == 14); - assert(i == next(d.begin(), 2)); + assert(i == std::next(d.begin(), 2)); i = d.begin(); assert(*i++ == 1); assert(*i++ == 1); @@ -43,9 +43,9 @@ } { std::list> d(10, 1); - std::list>::iterator i = d.insert(next(d.cbegin(), 2), {3, 4, 5, 6}); + std::list>::iterator i = d.insert(std::next(d.cbegin(), 2), {3, 4, 5, 6}); assert(d.size() == 14); - assert(i == next(d.begin(), 2)); + assert(i == std::next(d.begin(), 2)); i = d.begin(); assert(*i++ == 1); assert(*i++ == 1); diff --git a/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_size_value.pass.cpp b/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_size_value.pass.cpp --- a/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_size_value.pass.cpp +++ b/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_size_value.pass.cpp @@ -25,8 +25,8 @@ int a1[] = {1, 2, 3}; int a2[] = {1, 4, 4, 4, 4, 4, 2, 3}; List l1(a1, a1+3); - typename List::iterator i = l1.insert(next(l1.cbegin()), 5, 4); - assert(i == next(l1.begin())); + typename List::iterator i = l1.insert(std::next(l1.cbegin()), 5, 4); + assert(i == std::next(l1.begin())); assert(l1 == List(a2, a2+8)); #ifndef TEST_HAS_NO_EXCEPTIONS globalMemCounter.throw_after = 4; diff --git a/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_value.pass.cpp b/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_value.pass.cpp --- a/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_value.pass.cpp +++ b/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_value.pass.cpp @@ -24,8 +24,8 @@ int a1[] = {1, 2, 3}; int a2[] = {1, 4, 2, 3}; List l1(a1, a1+3); - typename List::iterator i = l1.insert(next(l1.cbegin()), 4); - assert(i == next(l1.begin())); + typename List::iterator i = l1.insert(std::next(l1.cbegin()), 4); + assert(i == std::next(l1.begin())); assert(l1.size() == 4); assert(std::distance(l1.begin(), l1.end()) == 4); assert(l1 == List(a2, a2+4)); diff --git a/libcxx/test/std/containers/sequences/list/list.ops/splice_pos_list.pass.cpp b/libcxx/test/std/containers/sequences/list/list.ops/splice_pos_list.pass.cpp --- a/libcxx/test/std/containers/sequences/list/list.ops/splice_pos_list.pass.cpp +++ b/libcxx/test/std/containers/sequences/list/list.ops/splice_pos_list.pass.cpp @@ -196,7 +196,7 @@ { std::list l1(a1, a1+2); std::list l2; - l1.splice(next(l1.begin()), l2); + l1.splice(std::next(l1.begin()), l2); assert(l1.size() == 2); assert(std::distance(l1.begin(), l1.end()) == 2); assert(l2.size() == 0); @@ -209,7 +209,7 @@ { std::list l1(a1, a1+2); std::list l2; - l1.splice(next(l1.begin(), 2), l2); + l1.splice(std::next(l1.begin(), 2), l2); assert(l1.size() == 2); assert(std::distance(l1.begin(), l1.end()) == 2); assert(l2.size() == 0); @@ -237,7 +237,7 @@ { std::list l1(a1, a1+2); std::list l2(a2, a2+1); - l1.splice(next(l1.begin()), l2); + l1.splice(std::next(l1.begin()), l2); assert(l1.size() == 3); assert(std::distance(l1.begin(), l1.end()) == 3); assert(l2.size() == 0); @@ -252,7 +252,7 @@ { std::list l1(a1, a1+2); std::list l2(a2, a2+1); - l1.splice(next(l1.begin(), 2), l2); + l1.splice(std::next(l1.begin(), 2), l2); assert(l1.size() == 3); assert(std::distance(l1.begin(), l1.end()) == 3); assert(l2.size() == 0); @@ -284,7 +284,7 @@ { std::list l1(a1, a1+2); std::list l2(a2, a2+2); - l1.splice(next(l1.begin()), l2); + l1.splice(std::next(l1.begin()), l2); assert(l1.size() == 4); assert(std::distance(l1.begin(), l1.end()) == 4); assert(l2.size() == 0); @@ -301,7 +301,7 @@ { std::list l1(a1, a1+2); std::list l2(a2, a2+2); - l1.splice(next(l1.begin(), 2), l2); + l1.splice(std::next(l1.begin(), 2), l2); assert(l1.size() == 4); assert(std::distance(l1.begin(), l1.end()) == 4); assert(l2.size() == 0); @@ -339,7 +339,7 @@ { std::list l1(a1, a1+3); std::list l2(a2, a2+3); - l1.splice(next(l1.begin()), l2); + l1.splice(std::next(l1.begin()), l2); assert(l1.size() == 6); assert(std::distance(l1.begin(), l1.end()) == 6); assert(l2.size() == 0); @@ -360,7 +360,7 @@ { std::list l1(a1, a1+3); std::list l2(a2, a2+3); - l1.splice(next(l1.begin(), 2), l2); + l1.splice(std::next(l1.begin(), 2), l2); assert(l1.size() == 6); assert(std::distance(l1.begin(), l1.end()) == 6); assert(l2.size() == 0); @@ -381,7 +381,7 @@ { std::list l1(a1, a1+3); std::list l2(a2, a2+3); - l1.splice(next(l1.begin(), 3), l2); + l1.splice(std::next(l1.begin(), 3), l2); assert(l1.size() == 6); assert(std::distance(l1.begin(), l1.end()) == 6); assert(l2.size() == 0); @@ -576,7 +576,7 @@ { std::list> l1(a1, a1+2); std::list> l2; - l1.splice(next(l1.begin()), l2); + l1.splice(std::next(l1.begin()), l2); assert(l1.size() == 2); assert(std::distance(l1.begin(), l1.end()) == 2); assert(l2.size() == 0); @@ -589,7 +589,7 @@ { std::list> l1(a1, a1+2); std::list> l2; - l1.splice(next(l1.begin(), 2), l2); + l1.splice(std::next(l1.begin(), 2), l2); assert(l1.size() == 2); assert(std::distance(l1.begin(), l1.end()) == 2); assert(l2.size() == 0); @@ -617,7 +617,7 @@ { std::list> l1(a1, a1+2); std::list> l2(a2, a2+1); - l1.splice(next(l1.begin()), l2); + l1.splice(std::next(l1.begin()), l2); assert(l1.size() == 3); assert(std::distance(l1.begin(), l1.end()) == 3); assert(l2.size() == 0); @@ -632,7 +632,7 @@ { std::list> l1(a1, a1+2); std::list> l2(a2, a2+1); - l1.splice(next(l1.begin(), 2), l2); + l1.splice(std::next(l1.begin(), 2), l2); assert(l1.size() == 3); assert(std::distance(l1.begin(), l1.end()) == 3); assert(l2.size() == 0); @@ -664,7 +664,7 @@ { std::list> l1(a1, a1+2); std::list> l2(a2, a2+2); - l1.splice(next(l1.begin()), l2); + l1.splice(std::next(l1.begin()), l2); assert(l1.size() == 4); assert(std::distance(l1.begin(), l1.end()) == 4); assert(l2.size() == 0); @@ -681,7 +681,7 @@ { std::list> l1(a1, a1+2); std::list> l2(a2, a2+2); - l1.splice(next(l1.begin(), 2), l2); + l1.splice(std::next(l1.begin(), 2), l2); assert(l1.size() == 4); assert(std::distance(l1.begin(), l1.end()) == 4); assert(l2.size() == 0); @@ -719,7 +719,7 @@ { std::list> l1(a1, a1+3); std::list> l2(a2, a2+3); - l1.splice(next(l1.begin()), l2); + l1.splice(std::next(l1.begin()), l2); assert(l1.size() == 6); assert(std::distance(l1.begin(), l1.end()) == 6); assert(l2.size() == 0); @@ -740,7 +740,7 @@ { std::list> l1(a1, a1+3); std::list> l2(a2, a2+3); - l1.splice(next(l1.begin(), 2), l2); + l1.splice(std::next(l1.begin(), 2), l2); assert(l1.size() == 6); assert(std::distance(l1.begin(), l1.end()) == 6); assert(l2.size() == 0); @@ -761,7 +761,7 @@ { std::list> l1(a1, a1+3); std::list> l2(a2, a2+3); - l1.splice(next(l1.begin(), 3), l2); + l1.splice(std::next(l1.begin(), 3), l2); assert(l1.size() == 6); assert(std::distance(l1.begin(), l1.end()) == 6); assert(l2.size() == 0); diff --git a/libcxx/test/std/containers/sequences/list/list.ops/splice_pos_list_iter.pass.cpp b/libcxx/test/std/containers/sequences/list/list.ops/splice_pos_list_iter.pass.cpp --- a/libcxx/test/std/containers/sequences/list/list.ops/splice_pos_list_iter.pass.cpp +++ b/libcxx/test/std/containers/sequences/list/list.ops/splice_pos_list_iter.pass.cpp @@ -47,7 +47,7 @@ { std::list l1; std::list l2(a2, a2+2); - l1.splice(l1.end(), l2, next(l2.begin())); + l1.splice(l1.end(), l2, std::next(l2.begin())); assert(l1.size() == 1); assert(std::distance(l1.begin(), l1.end()) == 1); assert(l2.size() == 1); @@ -75,7 +75,7 @@ { std::list l1; std::list l2(a2, a2+3); - l1.splice(l1.end(), l2, next(l2.begin())); + l1.splice(l1.end(), l2, std::next(l2.begin())); assert(l1.size() == 1); assert(std::distance(l1.begin(), l1.end()) == 1); assert(l2.size() == 2); @@ -90,7 +90,7 @@ { std::list l1; std::list l2(a2, a2+3); - l1.splice(l1.end(), l2, next(l2.begin(), 2)); + l1.splice(l1.end(), l2, std::next(l2.begin(), 2)); assert(l1.size() == 1); assert(std::distance(l1.begin(), l1.end()) == 1); assert(l2.size() == 2); @@ -126,7 +126,7 @@ { std::list l1(a1, a1+1); std::list l2(a2, a2+1); - l1.splice(next(l1.begin()), l2, l2.begin()); + l1.splice(std::next(l1.begin()), l2, l2.begin()); assert(l1.size() == 2); assert(std::distance(l1.begin(), l1.end()) == 2); assert(l2.size() == 0); @@ -148,7 +148,7 @@ } { std::list l1(a1, a1+2); - l1.splice(l1.begin(), l1, next(l1.begin())); + l1.splice(l1.begin(), l1, std::next(l1.begin())); assert(l1.size() == 2); assert(std::distance(l1.begin(), l1.end()) == 2); std::list::const_iterator i = l1.begin(); @@ -158,7 +158,7 @@ } { std::list l1(a1, a1+2); - l1.splice(next(l1.begin()), l1, l1.begin()); + l1.splice(std::next(l1.begin()), l1, l1.begin()); assert(l1.size() == 2); assert(std::distance(l1.begin(), l1.end()) == 2); std::list::const_iterator i = l1.begin(); @@ -168,7 +168,7 @@ } { std::list l1(a1, a1+2); - l1.splice(next(l1.begin()), l1, next(l1.begin())); + l1.splice(std::next(l1.begin()), l1, std::next(l1.begin())); assert(l1.size() == 2); assert(std::distance(l1.begin(), l1.end()) == 2); std::list::const_iterator i = l1.begin(); @@ -204,7 +204,7 @@ { std::list> l1; std::list> l2(a2, a2+2); - l1.splice(l1.end(), l2, next(l2.begin())); + l1.splice(l1.end(), l2, std::next(l2.begin())); assert(l1.size() == 1); assert(std::distance(l1.begin(), l1.end()) == 1); assert(l2.size() == 1); @@ -232,7 +232,7 @@ { std::list> l1; std::list> l2(a2, a2+3); - l1.splice(l1.end(), l2, next(l2.begin())); + l1.splice(l1.end(), l2, std::next(l2.begin())); assert(l1.size() == 1); assert(std::distance(l1.begin(), l1.end()) == 1); assert(l2.size() == 2); @@ -247,7 +247,7 @@ { std::list> l1; std::list> l2(a2, a2+3); - l1.splice(l1.end(), l2, next(l2.begin(), 2)); + l1.splice(l1.end(), l2, std::next(l2.begin(), 2)); assert(l1.size() == 1); assert(std::distance(l1.begin(), l1.end()) == 1); assert(l2.size() == 2); @@ -283,7 +283,7 @@ { std::list> l1(a1, a1+1); std::list> l2(a2, a2+1); - l1.splice(next(l1.begin()), l2, l2.begin()); + l1.splice(std::next(l1.begin()), l2, l2.begin()); assert(l1.size() == 2); assert(std::distance(l1.begin(), l1.end()) == 2); assert(l2.size() == 0); @@ -305,7 +305,7 @@ } { std::list> l1(a1, a1+2); - l1.splice(l1.begin(), l1, next(l1.begin())); + l1.splice(l1.begin(), l1, std::next(l1.begin())); assert(l1.size() == 2); assert(std::distance(l1.begin(), l1.end()) == 2); std::list>::const_iterator i = l1.begin(); @@ -315,7 +315,7 @@ } { std::list> l1(a1, a1+2); - l1.splice(next(l1.begin()), l1, l1.begin()); + l1.splice(std::next(l1.begin()), l1, l1.begin()); assert(l1.size() == 2); assert(std::distance(l1.begin(), l1.end()) == 2); std::list>::const_iterator i = l1.begin(); @@ -325,7 +325,7 @@ } { std::list> l1(a1, a1+2); - l1.splice(next(l1.begin()), l1, next(l1.begin())); + l1.splice(std::next(l1.begin()), l1, std::next(l1.begin())); assert(l1.size() == 2); assert(std::distance(l1.begin(), l1.end()) == 2); std::list>::const_iterator i = l1.begin(); diff --git a/libcxx/test/std/containers/sequences/list/list.ops/splice_pos_list_iter_iter.pass.cpp b/libcxx/test/std/containers/sequences/list/list.ops/splice_pos_list_iter_iter.pass.cpp --- a/libcxx/test/std/containers/sequences/list/list.ops/splice_pos_list_iter_iter.pass.cpp +++ b/libcxx/test/std/containers/sequences/list/list.ops/splice_pos_list_iter_iter.pass.cpp @@ -22,7 +22,7 @@ int a2[] = {4, 5, 6}; { std::list l1(a1, a1+3); - l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin())); + l1.splice(l1.begin(), l1, std::next(l1.begin()), std::next(l1.begin())); assert(l1.size() == 3); assert(std::distance(l1.begin(), l1.end()) == 3); std::list::const_iterator i = l1.begin(); @@ -34,7 +34,7 @@ } { std::list l1(a1, a1+3); - l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 2)); + l1.splice(l1.begin(), l1, std::next(l1.begin()), std::next(l1.begin(), 2)); assert(l1.size() == 3); assert(std::distance(l1.begin(), l1.end()) == 3); std::list::const_iterator i = l1.begin(); @@ -46,7 +46,7 @@ } { std::list l1(a1, a1+3); - l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 3)); + l1.splice(l1.begin(), l1, std::next(l1.begin()), std::next(l1.begin(), 3)); assert(l1.size() == 3); assert(std::distance(l1.begin(), l1.end()) == 3); std::list::const_iterator i = l1.begin(); @@ -59,7 +59,7 @@ { std::list l1(a1, a1+3); std::list l2(a2, a2+3); - l1.splice(l1.begin(), l2, next(l2.begin()), l2.end()); + l1.splice(l1.begin(), l2, std::next(l2.begin()), l2.end()); assert(l1.size() == 5); assert(std::distance(l1.begin(), l1.end()) == 5); std::list::const_iterator i = l1.begin(); @@ -79,7 +79,7 @@ { std::list l1(a1, a1+3); std::list l2(a2, a2+3); - l1.splice(next(l1.begin()), l2, next(l2.begin()), l2.end()); + l1.splice(std::next(l1.begin()), l2, std::next(l2.begin()), l2.end()); assert(l1.size() == 5); assert(std::distance(l1.begin(), l1.end()) == 5); std::list::const_iterator i = l1.begin(); @@ -99,7 +99,7 @@ { std::list l1(a1, a1+3); std::list l2(a2, a2+3); - l1.splice(l1.end(), l2, next(l2.begin()), l2.end()); + l1.splice(l1.end(), l2, std::next(l2.begin()), l2.end()); assert(l1.size() == 5); assert(std::distance(l1.begin(), l1.end()) == 5); std::list::const_iterator i = l1.begin(); @@ -119,7 +119,7 @@ #if TEST_STD_VER >= 11 { std::list> l1(a1, a1+3); - l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin())); + l1.splice(l1.begin(), l1, std::next(l1.begin()), std::next(l1.begin())); assert(l1.size() == 3); assert(std::distance(l1.begin(), l1.end()) == 3); std::list>::const_iterator i = l1.begin(); @@ -131,7 +131,7 @@ } { std::list> l1(a1, a1+3); - l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 2)); + l1.splice(l1.begin(), l1, std::next(l1.begin()), std::next(l1.begin(), 2)); assert(l1.size() == 3); assert(std::distance(l1.begin(), l1.end()) == 3); std::list>::const_iterator i = l1.begin(); @@ -143,7 +143,7 @@ } { std::list> l1(a1, a1+3); - l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 3)); + l1.splice(l1.begin(), l1, std::next(l1.begin()), std::next(l1.begin(), 3)); assert(l1.size() == 3); assert(std::distance(l1.begin(), l1.end()) == 3); std::list>::const_iterator i = l1.begin(); @@ -156,7 +156,7 @@ { std::list> l1(a1, a1+3); std::list> l2(a2, a2+3); - l1.splice(l1.begin(), l2, next(l2.begin()), l2.end()); + l1.splice(l1.begin(), l2, std::next(l2.begin()), l2.end()); assert(l1.size() == 5); assert(std::distance(l1.begin(), l1.end()) == 5); std::list>::const_iterator i = l1.begin(); @@ -176,7 +176,7 @@ { std::list> l1(a1, a1+3); std::list> l2(a2, a2+3); - l1.splice(next(l1.begin()), l2, next(l2.begin()), l2.end()); + l1.splice(std::next(l1.begin()), l2, std::next(l2.begin()), l2.end()); assert(l1.size() == 5); assert(std::distance(l1.begin(), l1.end()) == 5); std::list>::const_iterator i = l1.begin(); @@ -196,7 +196,7 @@ { std::list> l1(a1, a1+3); std::list> l2(a2, a2+3); - l1.splice(l1.end(), l2, next(l2.begin()), l2.end()); + l1.splice(l1.end(), l2, std::next(l2.begin()), l2.end()); assert(l1.size() == 5); assert(std::distance(l1.begin(), l1.end()) == 5); std::list>::const_iterator i = l1.begin(); diff --git a/libcxx/test/std/containers/sequences/vector.bool/erase_iter.pass.cpp b/libcxx/test/std/containers/sequences/vector.bool/erase_iter.pass.cpp --- a/libcxx/test/std/containers/sequences/vector.bool/erase_iter.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector.bool/erase_iter.pass.cpp @@ -29,7 +29,7 @@ assert(std::distance(l1.begin(), l1.end()) == 2); assert(*j == true); assert(*l1.begin() == 1); - assert(*next(l1.begin()) == true); + assert(*std::next(l1.begin()) == true); j = l1.erase(j); assert(j == l1.end()); assert(l1.size() == 1); @@ -50,7 +50,7 @@ assert(std::distance(l1.begin(), l1.end()) == 2); assert(*j == true); assert(*l1.begin() == 1); - assert(*next(l1.begin()) == true); + assert(*std::next(l1.begin()) == true); j = l1.erase(j); assert(j == l1.end()); assert(l1.size() == 1); diff --git a/libcxx/test/std/containers/sequences/vector.bool/erase_iter_iter.pass.cpp b/libcxx/test/std/containers/sequences/vector.bool/erase_iter_iter.pass.cpp --- a/libcxx/test/std/containers/sequences/vector.bool/erase_iter_iter.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector.bool/erase_iter_iter.pass.cpp @@ -29,7 +29,7 @@ } { std::vector l1(a1, a1+3); - std::vector::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin())); + std::vector::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin())); assert(l1.size() == 2); assert(std::distance(l1.cbegin(), l1.cend()) == 2); assert(i == l1.begin()); @@ -37,7 +37,7 @@ } { std::vector l1(a1, a1+3); - std::vector::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 2)); + std::vector::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin(), 2)); assert(l1.size() == 1); assert(std::distance(l1.cbegin(), l1.cend()) == 1); assert(i == l1.begin()); @@ -45,7 +45,7 @@ } { std::vector l1(a1, a1+3); - std::vector::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 3)); + std::vector::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin(), 3)); assert(l1.size() == 0); assert(std::distance(l1.cbegin(), l1.cend()) == 0); assert(i == l1.begin()); @@ -60,7 +60,7 @@ } { std::vector> l1(a1, a1+3); - std::vector>::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin())); + std::vector>::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin())); assert(l1.size() == 2); assert(std::distance(l1.cbegin(), l1.cend()) == 2); assert(i == l1.begin()); @@ -68,7 +68,7 @@ } { std::vector> l1(a1, a1+3); - std::vector>::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 2)); + std::vector>::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin(), 2)); assert(l1.size() == 1); assert(std::distance(l1.cbegin(), l1.cend()) == 1); assert(i == l1.begin()); @@ -76,7 +76,7 @@ } { std::vector> l1(a1, a1+3); - std::vector>::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 3)); + std::vector>::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin(), 3)); assert(l1.size() == 0); assert(std::distance(l1.cbegin(), l1.cend()) == 0); assert(i == l1.begin()); diff --git a/libcxx/test/std/containers/sequences/vector/vector.modifiers/erase_iter.pass.cpp b/libcxx/test/std/containers/sequences/vector/vector.modifiers/erase_iter.pass.cpp --- a/libcxx/test/std/containers/sequences/vector/vector.modifiers/erase_iter.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector/vector.modifiers/erase_iter.pass.cpp @@ -61,7 +61,7 @@ assert(std::distance(l1.begin(), l1.end()) == 2); assert(*j == 3); assert(*l1.begin() == 1); - assert(*next(l1.begin()) == 3); + assert(*std::next(l1.begin()) == 3); assert(is_contiguous_container_asan_correct(l1)); j = l1.erase(j); assert(j == l1.end()); @@ -87,7 +87,7 @@ assert(std::distance(l1.begin(), l1.end()) == 2); assert(*j == 3); assert(*l1.begin() == 1); - assert(*next(l1.begin()) == 3); + assert(*std::next(l1.begin()) == 3); assert(is_contiguous_container_asan_correct(l1)); j = l1.erase(j); assert(j == l1.end()); diff --git a/libcxx/test/std/containers/sequences/vector/vector.modifiers/erase_iter_iter.pass.cpp b/libcxx/test/std/containers/sequences/vector/vector.modifiers/erase_iter_iter.pass.cpp --- a/libcxx/test/std/containers/sequences/vector/vector.modifiers/erase_iter_iter.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector/vector.modifiers/erase_iter_iter.pass.cpp @@ -48,7 +48,7 @@ { std::vector l1(a1, a1+3); assert(is_contiguous_container_asan_correct(l1)); - std::vector::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin())); + std::vector::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin())); assert(l1.size() == 2); assert(std::distance(l1.cbegin(), l1.cend()) == 2); assert(i == l1.begin()); @@ -58,7 +58,7 @@ { std::vector l1(a1, a1+3); assert(is_contiguous_container_asan_correct(l1)); - std::vector::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 2)); + std::vector::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin(), 2)); assert(l1.size() == 1); assert(std::distance(l1.cbegin(), l1.cend()) == 1); assert(i == l1.begin()); @@ -68,7 +68,7 @@ { std::vector l1(a1, a1+3); assert(is_contiguous_container_asan_correct(l1)); - std::vector::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 3)); + std::vector::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin(), 3)); assert(l1.size() == 0); assert(std::distance(l1.cbegin(), l1.cend()) == 0); assert(i == l1.begin()); @@ -100,7 +100,7 @@ { std::vector> l1(a1, a1+3); assert(is_contiguous_container_asan_correct(l1)); - std::vector>::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin())); + std::vector>::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin())); assert(l1.size() == 2); assert(std::distance(l1.cbegin(), l1.cend()) == 2); assert(i == l1.begin()); @@ -110,7 +110,7 @@ { std::vector> l1(a1, a1+3); assert(is_contiguous_container_asan_correct(l1)); - std::vector>::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 2)); + std::vector>::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin(), 2)); assert(l1.size() == 1); assert(std::distance(l1.cbegin(), l1.cend()) == 1); assert(i == l1.begin()); @@ -120,7 +120,7 @@ { std::vector> l1(a1, a1+3); assert(is_contiguous_container_asan_correct(l1)); - std::vector>::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 3)); + std::vector>::iterator i = l1.erase(l1.cbegin(), std::next(l1.cbegin(), 3)); assert(l1.size() == 0); assert(std::distance(l1.cbegin(), l1.cend()) == 0); assert(i == l1.begin()); diff --git a/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/erase_range.pass.cpp b/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/erase_range.pass.cpp --- a/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/erase_range.pass.cpp +++ b/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/erase_range.pass.cpp @@ -37,7 +37,7 @@ }; C c(a, a + sizeof(a)/sizeof(a[0])); C::const_iterator i = c.find(2); - C::const_iterator j = next(i, 1); + C::const_iterator j = std::next(i, 1); C::iterator k = c.erase(i, i); assert(k == i); assert(c.size() == 4); @@ -74,7 +74,7 @@ }; C c(a, a + sizeof(a)/sizeof(a[0])); C::const_iterator i = c.find(2); - C::const_iterator j = next(i, 1); + C::const_iterator j = std::next(i, 1); C::iterator k = c.erase(i, i); assert(k == i); assert(c.size() == 4); diff --git a/libcxx/test/std/containers/unord/unord.multimap/reserve.pass.cpp b/libcxx/test/std/containers/unord/unord.multimap/reserve.pass.cpp --- a/libcxx/test/std/containers/unord/unord.multimap/reserve.pass.cpp +++ b/libcxx/test/std/containers/unord/unord.multimap/reserve.pass.cpp @@ -32,7 +32,7 @@ s.insert("four"); assert(s.find(c.find(1)->second) != s.end()); s.erase(s.find(c.find(1)->second)); - assert(s.find(next(c.find(1))->second) != s.end()); + assert(s.find(std::next(c.find(1))->second) != s.end()); } { std::set s; @@ -40,7 +40,7 @@ s.insert("four"); assert(s.find(c.find(2)->second) != s.end()); s.erase(s.find(c.find(2)->second)); - assert(s.find(next(c.find(2))->second) != s.end()); + assert(s.find(std::next(c.find(2))->second) != s.end()); } assert(c.find(3)->second == "three"); assert(c.find(4)->second == "four"); diff --git a/libcxx/test/std/containers/unord/unord.multimap/swap_member.pass.cpp b/libcxx/test/std/containers/unord/unord.multimap/swap_member.pass.cpp --- a/libcxx/test/std/containers/unord/unord.multimap/swap_member.pass.cpp +++ b/libcxx/test/std/containers/unord/unord.multimap/swap_member.pass.cpp @@ -142,7 +142,7 @@ s.insert("four"); assert(s.find(c2.find(1)->second) != s.end()); s.erase(s.find(c2.find(1)->second)); - assert(s.find(next(c2.find(1))->second) != s.end()); + assert(s.find(std::next(c2.find(1))->second) != s.end()); } { std::set s; @@ -150,7 +150,7 @@ s.insert("four"); assert(s.find(c2.find(2)->second) != s.end()); s.erase(s.find(c2.find(2)->second)); - assert(s.find(next(c2.find(2))->second) != s.end()); + assert(s.find(std::next(c2.find(2))->second) != s.end()); } assert(c2.find(3)->second == "three"); assert(c2.find(4)->second == "four"); @@ -217,7 +217,7 @@ s.insert("four"); assert(s.find(c2.find(1)->second) != s.end()); s.erase(s.find(c2.find(1)->second)); - assert(s.find(next(c2.find(1))->second) != s.end()); + assert(s.find(std::next(c2.find(1))->second) != s.end()); } { std::set s; @@ -225,7 +225,7 @@ s.insert("four"); assert(s.find(c2.find(2)->second) != s.end()); s.erase(s.find(c2.find(2)->second)); - assert(s.find(next(c2.find(2))->second) != s.end()); + assert(s.find(std::next(c2.find(2))->second) != s.end()); } assert(c2.find(3)->second == "three"); assert(c2.find(4)->second == "four"); @@ -350,7 +350,7 @@ s.insert("four"); assert(s.find(c2.find(1)->second) != s.end()); s.erase(s.find(c2.find(1)->second)); - assert(s.find(next(c2.find(1))->second) != s.end()); + assert(s.find(std::next(c2.find(1))->second) != s.end()); } { std::set s; @@ -358,7 +358,7 @@ s.insert("four"); assert(s.find(c2.find(2)->second) != s.end()); s.erase(s.find(c2.find(2)->second)); - assert(s.find(next(c2.find(2))->second) != s.end()); + assert(s.find(std::next(c2.find(2))->second) != s.end()); } assert(c2.find(3)->second == "three"); assert(c2.find(4)->second == "four"); @@ -425,7 +425,7 @@ s.insert("four"); assert(s.find(c2.find(1)->second) != s.end()); s.erase(s.find(c2.find(1)->second)); - assert(s.find(next(c2.find(1))->second) != s.end()); + assert(s.find(std::next(c2.find(1))->second) != s.end()); } { std::set s; @@ -433,7 +433,7 @@ s.insert("four"); assert(s.find(c2.find(2)->second) != s.end()); s.erase(s.find(c2.find(2)->second)); - assert(s.find(next(c2.find(2))->second) != s.end()); + assert(s.find(std::next(c2.find(2))->second) != s.end()); } assert(c2.find(3)->second == "three"); assert(c2.find(4)->second == "four"); @@ -558,7 +558,7 @@ s.insert("four"); assert(s.find(c2.find(1)->second) != s.end()); s.erase(s.find(c2.find(1)->second)); - assert(s.find(next(c2.find(1))->second) != s.end()); + assert(s.find(std::next(c2.find(1))->second) != s.end()); } { std::set s; @@ -566,7 +566,7 @@ s.insert("four"); assert(s.find(c2.find(2)->second) != s.end()); s.erase(s.find(c2.find(2)->second)); - assert(s.find(next(c2.find(2))->second) != s.end()); + assert(s.find(std::next(c2.find(2))->second) != s.end()); } assert(c2.find(3)->second == "three"); assert(c2.find(4)->second == "four"); @@ -633,7 +633,7 @@ s.insert("four"); assert(s.find(c2.find(1)->second) != s.end()); s.erase(s.find(c2.find(1)->second)); - assert(s.find(next(c2.find(1))->second) != s.end()); + assert(s.find(std::next(c2.find(1))->second) != s.end()); } { std::set s; @@ -641,7 +641,7 @@ s.insert("four"); assert(s.find(c2.find(2)->second) != s.end()); s.erase(s.find(c2.find(2)->second)); - assert(s.find(next(c2.find(2))->second) != s.end()); + assert(s.find(std::next(c2.find(2))->second) != s.end()); } assert(c2.find(3)->second == "three"); assert(c2.find(4)->second == "four"); diff --git a/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/emplace_hint.pass.cpp b/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/emplace_hint.pass.cpp --- a/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/emplace_hint.pass.cpp +++ b/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/emplace_hint.pass.cpp @@ -42,18 +42,18 @@ assert(c.size() == 2); assert(r->first == 3); assert(r->second == Emplaceable(5, 6)); - LIBCPP_ASSERT(r == next(c.begin())); + LIBCPP_ASSERT(r == std::next(c.begin())); r = c.emplace_hint(r, std::piecewise_construct, std::forward_as_tuple(3), std::forward_as_tuple(6, 7)); assert(c.size() == 3); assert(r->first == 3); assert(r->second == Emplaceable(6, 7)); - LIBCPP_ASSERT(r == next(c.begin())); + LIBCPP_ASSERT(r == std::next(c.begin())); r = c.begin(); assert(r->first == 3); LIBCPP_ASSERT(r->second == Emplaceable()); - r = next(r, 2); + r = std::next(r, 2); assert(r->first == 3); LIBCPP_ASSERT(r->second == Emplaceable(5, 6)); } @@ -73,18 +73,18 @@ assert(c.size() == 2); assert(r->first == 3); assert(r->second == Emplaceable(5, 6)); - LIBCPP_ASSERT(r == next(c.begin())); + LIBCPP_ASSERT(r == std::next(c.begin())); r = c.emplace_hint(r, std::piecewise_construct, std::forward_as_tuple(3), std::forward_as_tuple(6, 7)); assert(c.size() == 3); assert(r->first == 3); assert(r->second == Emplaceable(6, 7)); - LIBCPP_ASSERT(r == next(c.begin())); + LIBCPP_ASSERT(r == std::next(c.begin())); r = c.begin(); assert(r->first == 3); LIBCPP_ASSERT(r->second == Emplaceable()); - r = next(r, 2); + r = std::next(r, 2); assert(r->first == 3); LIBCPP_ASSERT(r->second == Emplaceable(5, 6)); } diff --git a/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/erase_range.pass.cpp b/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/erase_range.pass.cpp --- a/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/erase_range.pass.cpp +++ b/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/erase_range.pass.cpp @@ -40,7 +40,7 @@ }; C c(a, a + sizeof(a)/sizeof(a[0])); C::const_iterator i = c.find(2); - C::const_iterator j = next(i, 2); + C::const_iterator j = std::next(i, 2); C::iterator k = c.erase(i, i); assert(k == i); assert(c.size() == 6); @@ -109,7 +109,7 @@ }; C c(a, a + sizeof(a)/sizeof(a[0])); C::const_iterator i = c.find(2); - C::const_iterator j = next(i, 2); + C::const_iterator j = std::next(i, 2); C::iterator k = c.erase(i, i); assert(k == i); assert(c.size() == 6); diff --git a/libcxx/test/std/containers/unord/unord.multiset/erase_range.pass.cpp b/libcxx/test/std/containers/unord/unord.multiset/erase_range.pass.cpp --- a/libcxx/test/std/containers/unord/unord.multiset/erase_range.pass.cpp +++ b/libcxx/test/std/containers/unord/unord.multiset/erase_range.pass.cpp @@ -37,7 +37,7 @@ }; C c(a, a + sizeof(a)/sizeof(a[0])); C::const_iterator i = c.find(2); - C::const_iterator j = next(i, 2); + C::const_iterator j = std::next(i, 2); C::iterator k = c.erase(i, i); assert(k == i); assert(c.size() == 6); @@ -72,7 +72,7 @@ }; C c(a, a + sizeof(a)/sizeof(a[0])); C::const_iterator i = c.find(2); - C::const_iterator j = next(i, 2); + C::const_iterator j = std::next(i, 2); C::iterator k = c.erase(i, i); assert(k == i); assert(c.size() == 6); diff --git a/libcxx/test/std/containers/unord/unord.set/erase_range.pass.cpp b/libcxx/test/std/containers/unord/unord.set/erase_range.pass.cpp --- a/libcxx/test/std/containers/unord/unord.set/erase_range.pass.cpp +++ b/libcxx/test/std/containers/unord/unord.set/erase_range.pass.cpp @@ -37,7 +37,7 @@ }; C c(a, a + sizeof(a)/sizeof(a[0])); C::const_iterator i = c.find(2); - C::const_iterator j = next(i); + C::const_iterator j = std::next(i); C::iterator k = c.erase(i, i); assert(k == i); assert(c.size() == 4); @@ -71,7 +71,7 @@ }; C c(a, a + sizeof(a)/sizeof(a[0])); C::const_iterator i = c.find(2); - C::const_iterator j = next(i); + C::const_iterator j = std::next(i); C::iterator k = c.erase(i, i); assert(k == i); assert(c.size() == 4); diff --git a/libcxx/test/std/input.output/file.streams/fstreams/filebuf.assign/move_assign.pass.cpp b/libcxx/test/std/input.output/file.streams/fstreams/filebuf.assign/move_assign.pass.cpp --- a/libcxx/test/std/input.output/file.streams/fstreams/filebuf.assign/move_assign.pass.cpp +++ b/libcxx/test/std/input.output/file.streams/fstreams/filebuf.assign/move_assign.pass.cpp @@ -30,7 +30,7 @@ f.pubseekoff(1, std::ios_base::beg); assert(f.sgetc() == '2'); std::filebuf f2; - f2 = move(f); + f2 = std::move(f); assert(!f.is_open()); assert(f2.is_open()); assert(f2.sgetc() == '2'); @@ -47,7 +47,7 @@ f.pubseekoff(1, std::ios_base::beg); assert(f.sgetc() == L'2'); std::wfilebuf f2; - f2 = move(f); + f2 = std::move(f); assert(!f.is_open()); assert(f2.is_open()); assert(f2.sgetc() == L'2'); diff --git a/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/move_assign.pass.cpp b/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/move_assign.pass.cpp --- a/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/move_assign.pass.cpp +++ b/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/move_assign.pass.cpp @@ -25,7 +25,7 @@ std::fstream fso(temp.c_str(), std::ios_base::in | std::ios_base::out | std::ios_base::trunc); std::fstream fs; - fs = move(fso); + fs = std::move(fso); double x = 0; fs << 3.25; fs.seekg(0); @@ -39,7 +39,7 @@ std::wfstream fso(temp.c_str(), std::ios_base::in | std::ios_base::out | std::ios_base::trunc); std::wfstream fs; - fs = move(fso); + fs = std::move(fso); double x = 0; fs << 3.25; fs.seekg(0); diff --git a/libcxx/test/std/input.output/file.streams/fstreams/ifstream.assign/move_assign.pass.cpp b/libcxx/test/std/input.output/file.streams/fstreams/ifstream.assign/move_assign.pass.cpp --- a/libcxx/test/std/input.output/file.streams/fstreams/ifstream.assign/move_assign.pass.cpp +++ b/libcxx/test/std/input.output/file.streams/fstreams/ifstream.assign/move_assign.pass.cpp @@ -25,7 +25,7 @@ { std::ifstream fso("test.dat"); std::ifstream fs; - fs = move(fso); + fs = std::move(fso); double x = 0; fs >> x; assert(x == 3.25); @@ -34,7 +34,7 @@ { std::wifstream fso("test.dat"); std::wifstream fs; - fs = move(fso); + fs = std::move(fso); double x = 0; fs >> x; assert(x == 3.25); diff --git a/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/move_assign.pass.cpp b/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/move_assign.pass.cpp --- a/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/move_assign.pass.cpp +++ b/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/move_assign.pass.cpp @@ -24,7 +24,7 @@ { std::ofstream fso(temp.c_str()); std::ofstream fs; - fs = move(fso); + fs = std::move(fso); fs << 3.25; } { @@ -39,7 +39,7 @@ { std::wofstream fso(temp.c_str()); std::wofstream fs; - fs = move(fso); + fs = std::move(fso); fs << 3.25; } { diff --git a/libcxx/test/std/input.output/iostream.format/ext.manip/put_money.pass.cpp b/libcxx/test/std/input.output/iostream.format/ext.manip/put_money.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/ext.manip/put_money.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/ext.manip/put_money.pass.cpp @@ -59,7 +59,7 @@ testbuf sb; std::ostream os(&sb); os.imbue(std::locale(LOCALE_en_US_UTF_8)); - showbase(os); + std::showbase(os); long double x = -123456789; os << std::put_money(x, false); assert(sb.str() == "-$1,234,567.89"); @@ -68,7 +68,7 @@ testbuf sb; std::ostream os(&sb); os.imbue(std::locale(LOCALE_en_US_UTF_8)); - showbase(os); + std::showbase(os); long double x = -123456789; os << std::put_money(x, true); assert(sb.str() == "-USD 1,234,567.89"); @@ -78,7 +78,7 @@ testbuf sb; std::wostream os(&sb); os.imbue(std::locale(LOCALE_en_US_UTF_8)); - showbase(os); + std::showbase(os); long double x = -123456789; os << std::put_money(x, false); assert(sb.str() == L"-$1,234,567.89"); @@ -87,7 +87,7 @@ testbuf sb; std::wostream os(&sb); os.imbue(std::locale(LOCALE_en_US_UTF_8)); - showbase(os); + std::showbase(os); long double x = -123456789; os << std::put_money(x, true); assert(sb.str() == L"-USD 1,234,567.89"); diff --git a/libcxx/test/std/input.output/iostream.format/input.streams/istream.manip/ws.pass.cpp b/libcxx/test/std/input.output/iostream.format/input.streams/istream.manip/ws.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/input.streams/istream.manip/ws.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/input.streams/istream.manip/ws.pass.cpp @@ -45,7 +45,7 @@ { testbuf sb(" 123"); std::istream is(&sb); - ws(is); + std::ws(is); assert(is.good()); assert(is.peek() == '1'); } @@ -53,7 +53,7 @@ { testbuf sb(L" 123"); std::wistream is(&sb); - ws(is); + std::ws(is); assert(is.good()); assert(is.peek() == L'1'); } @@ -61,10 +61,10 @@ { testbuf sb(" "); std::istream is(&sb); - ws(is); + std::ws(is); assert(!is.fail()); assert(is.eof()); - ws(is); + std::ws(is); assert(is.eof()); assert(is.fail()); } @@ -72,10 +72,10 @@ { testbuf sb(L" "); std::wistream is(&sb); - ws(is); + std::ws(is); assert(!is.fail()); assert(is.eof()); - ws(is); + std::ws(is); assert(is.eof()); assert(is.fail()); } diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/bool.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/bool.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/bool.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/bool.pass.cpp @@ -76,7 +76,7 @@ { testbuf sb; std::ostream os(&sb); - boolalpha(os); + std::boolalpha(os); bool b = true; os << b; assert(sb.str() == "true"); @@ -84,7 +84,7 @@ { testbuf sb; std::ostream os(&sb); - boolalpha(os); + std::boolalpha(os); bool b = false; os << b; assert(sb.str() == "false"); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/double.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/double.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/double.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/double.pass.cpp @@ -76,7 +76,7 @@ { testbuf sb; std::ostream os(&sb); - hex(os); + std::hex(os); double n = -10.5; os << n; assert(sb.str() == "-10.5"); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/float.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/float.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/float.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/float.pass.cpp @@ -76,7 +76,7 @@ { testbuf sb; std::ostream os(&sb); - hex(os); + std::hex(os); float n = -10.5; os << n; assert(sb.str() == "-10.5"); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/int.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/int.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/int.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/int.pass.cpp @@ -76,7 +76,7 @@ { testbuf sb; std::ostream os(&sb); - hex(os); + std::hex(os); int n = -10; os << n; assert(sb.str() == "fffffff6"); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long.pass.cpp @@ -76,7 +76,7 @@ { testbuf sb; std::ostream os(&sb); - hex(os); + std::hex(os); long n = 0xfffffff6; os << n; assert(sb.str() == "fffffff6"); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long_double.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long_double.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long_double.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long_double.pass.cpp @@ -76,7 +76,7 @@ { testbuf sb; std::ostream os(&sb); - hex(os); + std::hex(os); long double n = -10.5; os << n; assert(sb.str() == "-10.5"); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long_long.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long_long.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long_long.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long_long.pass.cpp @@ -76,7 +76,7 @@ { testbuf sb; std::ostream os(&sb); - hex(os); + std::hex(os); long long n = -10; os << n; assert(sb.str() == "fffffffffffffff6"); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/short.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/short.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/short.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/short.pass.cpp @@ -76,7 +76,7 @@ { testbuf sb; std::ostream os(&sb); - hex(os); + std::hex(os); short n = -10; os << n; assert(sb.str() == "fff6"); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_int.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_int.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_int.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_int.pass.cpp @@ -76,7 +76,7 @@ { testbuf sb; std::ostream os(&sb); - hex(os); + std::hex(os); unsigned int n = 0xFFF6; os << n; assert(sb.str() == "fff6"); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_long.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_long.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_long.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_long.pass.cpp @@ -76,7 +76,7 @@ { testbuf sb; std::ostream os(&sb); - hex(os); + std::hex(os); unsigned long n = 0xfffffff6; os << n; assert(sb.str() == "fffffff6"); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_long_long.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_long_long.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_long_long.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_long_long.pass.cpp @@ -76,7 +76,7 @@ { testbuf sb; std::ostream os(&sb); - hex(os); + std::hex(os); unsigned long long n = static_cast(-10); os << n; assert(sb.str() == "fffffffffffffff6"); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_short.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_short.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_short.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_short.pass.cpp @@ -76,7 +76,7 @@ { testbuf sb; std::ostream os(&sb); - hex(os); + std::hex(os); unsigned short n = 0xFFF6; os << n; assert(sb.str() == "fff6"); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/CharT.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/CharT.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/CharT.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/CharT.pass.cpp @@ -82,7 +82,7 @@ testbuf sb; std::wostream os(&sb); os.width(5); - left(os); + std::left(os); wchar_t c = L'a'; os << c; assert(sb.str() == L"a "); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/CharT_pointer.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/CharT_pointer.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/CharT_pointer.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/CharT_pointer.pass.cpp @@ -82,7 +82,7 @@ testbuf sb; std::wostream os(&sb); os.width(5); - left(os); + std::left(os); const wchar_t* c = L"123"; os << c; assert(sb.str() == L"123 "); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char.pass.cpp @@ -80,7 +80,7 @@ testbuf sb; std::ostream os(&sb); os.width(5); - left(os); + std::left(os); char c = 'a'; os << c; assert(sb.str() == "a "); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_pointer.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_pointer.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_pointer.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_pointer.pass.cpp @@ -80,7 +80,7 @@ testbuf sb; std::ostream os(&sb); os.width(5); - left(os); + std::left(os); const char* c = "123"; os << c; assert(sb.str() == "123 "); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_to_wide.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_to_wide.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_to_wide.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_to_wide.pass.cpp @@ -82,7 +82,7 @@ testbuf sb; std::wostream os(&sb); os.width(5); - left(os); + std::left(os); char c = 'a'; os << c; assert(sb.str() == L"a "); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_to_wide_pointer.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_to_wide_pointer.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_to_wide_pointer.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_to_wide_pointer.pass.cpp @@ -82,7 +82,7 @@ testbuf sb; std::wostream os(&sb); os.width(5); - left(os); + std::left(os); const char* c = "123"; os << c; assert(sb.str() == L"123 "); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/signed_char.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/signed_char.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/signed_char.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/signed_char.pass.cpp @@ -80,7 +80,7 @@ testbuf sb; std::ostream os(&sb); os.width(5); - left(os); + std::left(os); signed char c = 'a'; os << c; assert(sb.str() == "a "); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/signed_char_pointer.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/signed_char_pointer.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/signed_char_pointer.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/signed_char_pointer.pass.cpp @@ -80,7 +80,7 @@ testbuf sb; std::ostream os(&sb); os.width(5); - left(os); + std::left(os); const signed char* c = (const signed char*)"123"; os << c; assert(sb.str() == "123 "); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/unsigned_char.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/unsigned_char.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/unsigned_char.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/unsigned_char.pass.cpp @@ -80,7 +80,7 @@ testbuf sb; std::ostream os(&sb); os.width(5); - left(os); + std::left(os); unsigned char c = 'a'; os << c; assert(sb.str() == "a "); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/unsigned_char_pointer.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/unsigned_char_pointer.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/unsigned_char_pointer.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/unsigned_char_pointer.pass.cpp @@ -80,7 +80,7 @@ testbuf sb; std::ostream os(&sb); os.width(5); - left(os); + std::left(os); const unsigned char* c = (const unsigned char*)"123"; os << c; assert(sb.str() == "123 "); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/endl.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/endl.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/endl.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/endl.pass.cpp @@ -65,7 +65,7 @@ { testbuf sb; std::ostream os(&sb); - endl(os); + std::endl(os); assert(sb.str() == "\n"); assert(sync_called == 1); assert(os.good()); @@ -74,7 +74,7 @@ { testbuf sb; std::wostream os(&sb); - endl(os); + std::endl(os); assert(sb.str() == L"\n"); assert(sync_called == 2); assert(os.good()); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/ends.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/ends.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/ends.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/ends.pass.cpp @@ -56,7 +56,7 @@ { testbuf sb; std::ostream os(&sb); - ends(os); + std::ends(os); assert(sb.str().size() == 1); assert(sb.str().back() == 0); assert(os.good()); @@ -65,7 +65,7 @@ { testbuf sb; std::wostream os(&sb); - ends(os); + std::ends(os); assert(sb.str().size() == 1); assert(sb.str().back() == 0); assert(os.good()); diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/flush.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/flush.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/flush.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/flush.pass.cpp @@ -45,7 +45,7 @@ { testbuf sb; std::ostream os(&sb); - flush(os); + std::flush(os); assert(sync_called == 1); assert(os.good()); } @@ -53,7 +53,7 @@ { testbuf sb; std::wostream os(&sb); - flush(os); + std::flush(os); assert(sync_called == 2); assert(os.good()); } diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream_sentry/destruct.pass.cpp b/libcxx/test/std/input.output/iostream.format/output.streams/ostream_sentry/destruct.pass.cpp --- a/libcxx/test/std/input.output/iostream.format/output.streams/ostream_sentry/destruct.pass.cpp +++ b/libcxx/test/std/input.output/iostream.format/output.streams/ostream_sentry/destruct.pass.cpp @@ -55,7 +55,7 @@ std::ostream os(&sb); std::ostream::sentry s(os); assert(bool(s)); - unitbuf(os); + std::unitbuf(os); } assert(sync_called == 1); #ifndef TEST_HAS_NO_EXCEPTIONS @@ -66,7 +66,7 @@ { std::ostream::sentry s(os); assert(bool(s)); - unitbuf(os); + std::unitbuf(os); throw 1; } catch (...) diff --git a/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.assign/move.pass.cpp b/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.assign/move.pass.cpp --- a/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.assign/move.pass.cpp +++ b/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.assign/move.pass.cpp @@ -23,38 +23,38 @@ { std::stringbuf buf1("testing"); std::stringbuf buf; - buf = move(buf1); + buf = std::move(buf1); assert(buf.str() == "testing"); } { std::stringbuf buf1("testing", std::ios_base::in); std::stringbuf buf; - buf = move(buf1); + buf = std::move(buf1); assert(buf.str() == "testing"); } { std::stringbuf buf1("testing", std::ios_base::out); std::stringbuf buf; - buf = move(buf1); + buf = std::move(buf1); assert(buf.str() == "testing"); } #ifndef TEST_HAS_NO_WIDE_CHARACTERS { std::wstringbuf buf1(L"testing"); std::wstringbuf buf; - buf = move(buf1); + buf = std::move(buf1); assert(buf.str() == L"testing"); } { std::wstringbuf buf1(L"testing", std::ios_base::in); std::wstringbuf buf; - buf = move(buf1); + buf = std::move(buf1); assert(buf.str() == L"testing"); } { std::wstringbuf buf1(L"testing", std::ios_base::out); std::wstringbuf buf; - buf = move(buf1); + buf = std::move(buf1); assert(buf.str() == L"testing"); } #endif // TEST_HAS_NO_WIDE_CHARACTERS diff --git a/libcxx/test/std/language.support/support.exception/except.nested/assign.pass.cpp b/libcxx/test/std/language.support/support.exception/except.nested/assign.pass.cpp --- a/libcxx/test/std/language.support/support.exception/except.nested/assign.pass.cpp +++ b/libcxx/test/std/language.support/support.exception/except.nested/assign.pass.cpp @@ -49,7 +49,7 @@ assert(e.nested_ptr() != nullptr); try { - rethrow_exception(e.nested_ptr()); + std::rethrow_exception(e.nested_ptr()); assert(false); } catch (const A& a) diff --git a/libcxx/test/std/language.support/support.exception/except.nested/ctor_copy.pass.cpp b/libcxx/test/std/language.support/support.exception/except.nested/ctor_copy.pass.cpp --- a/libcxx/test/std/language.support/support.exception/except.nested/ctor_copy.pass.cpp +++ b/libcxx/test/std/language.support/support.exception/except.nested/ctor_copy.pass.cpp @@ -47,7 +47,7 @@ assert(e.nested_ptr() != nullptr); try { - rethrow_exception(e.nested_ptr()); + std::rethrow_exception(e.nested_ptr()); assert(false); } catch (const A& a) diff --git a/libcxx/test/std/language.support/support.exception/except.nested/ctor_default.pass.cpp b/libcxx/test/std/language.support/support.exception/except.nested/ctor_default.pass.cpp --- a/libcxx/test/std/language.support/support.exception/except.nested/ctor_default.pass.cpp +++ b/libcxx/test/std/language.support/support.exception/except.nested/ctor_default.pass.cpp @@ -45,7 +45,7 @@ assert(e.nested_ptr() != nullptr); try { - rethrow_exception(e.nested_ptr()); + std::rethrow_exception(e.nested_ptr()); assert(false); } catch (const A& a) diff --git a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_en_US.pass.cpp b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_en_US.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_en_US.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_en_US.pass.cpp @@ -132,7 +132,7 @@ } { // zero, showbase std::string v = "$0.00"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -141,7 +141,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 0); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::string v = "-$0.01"; @@ -156,7 +156,7 @@ } { // negative one, showbase std::string v = "-$0.01"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -165,7 +165,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -1); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::string v = "$1,234,567.89"; @@ -180,7 +180,7 @@ } { // positive, showbase std::string v = "$1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -189,11 +189,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-$1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -202,11 +202,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-USD 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -214,7 +214,7 @@ false, ios, err, ex); assert(iter.base() == v.data() + 1); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-USD 1,234,567.89"; @@ -298,7 +298,7 @@ } { // zero, showbase std::string v = "USD 0.00"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -307,7 +307,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 0); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::string v = "-USD 0.01"; @@ -322,7 +322,7 @@ } { // negative one, showbase std::string v = "-USD 0.01"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -331,7 +331,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -1); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::string v = "USD 1,234,567.89"; @@ -346,7 +346,7 @@ } { // positive, showbase std::string v = "USD 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -355,11 +355,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-USD 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -368,11 +368,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-$1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -380,7 +380,7 @@ true, ios, err, ex); assert(iter.base() == v.data() + 1); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-$1,234,567.89"; @@ -465,7 +465,7 @@ } { // zero, showbase std::wstring v = L"$0.00"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -474,7 +474,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 0); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::wstring v = L"-$0.01"; @@ -489,7 +489,7 @@ } { // negative one, showbase std::wstring v = L"-$0.01"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -498,7 +498,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -1); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::wstring v = L"$1,234,567.89"; @@ -513,7 +513,7 @@ } { // positive, showbase std::wstring v = L"$1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -522,11 +522,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-$1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -535,11 +535,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-USD 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -547,7 +547,7 @@ false, ios, err, ex); assert(iter.base() == v.data() + 1); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-USD 1,234,567.89"; @@ -631,7 +631,7 @@ } { // zero, showbase std::wstring v = L"USD 0.00"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -640,7 +640,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 0); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::wstring v = L"-USD 0.01"; @@ -655,7 +655,7 @@ } { // negative one, showbase std::wstring v = L"-USD 0.01"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -664,7 +664,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -1); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::wstring v = L"USD 1,234,567.89"; @@ -679,7 +679,7 @@ } { // positive, showbase std::wstring v = L"USD 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -688,11 +688,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-USD 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -701,11 +701,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-$1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -713,7 +713,7 @@ true, ios, err, ex); assert(iter.base() == v.data() + 1); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-$1,234,567.89"; diff --git a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_fr_FR.pass.cpp b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_fr_FR.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_fr_FR.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_fr_FR.pass.cpp @@ -155,7 +155,7 @@ } { // zero, showbase std::string v = "0,00 \u20ac"; // EURO SIGN - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -167,7 +167,7 @@ } { // zero, showbase std::string v = "0,00 \u20ac"; // EURO SIGN - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -190,7 +190,7 @@ } { // negative one, showbase std::string v = "-0,01 \u20ac"; // EURO SIGN - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -213,7 +213,7 @@ } { // positive, showbase std::string v = "1 234 567,89 \u20ac"; // EURO SIGN - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -222,11 +222,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-1 234 567,89 \u20ac"; // EURO SIGN - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -235,11 +235,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "1 234 567,89 EUR -"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -247,7 +247,7 @@ false, ios, err, ex); assert(iter.base() == v.data() + 13); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "1 234 567,89 EUR -"; @@ -260,7 +260,7 @@ assert(err == std::ios_base::goodbit); assert(ex == 123456789); } - noshowbase(ios); + std::noshowbase(ios); } { const my_facet f(1); @@ -322,7 +322,7 @@ } { // zero, showbase std::string v = "0,00 EUR"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -334,7 +334,7 @@ } { // zero, showbase std::string v = "0,00 EUR"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -357,7 +357,7 @@ } { // negative one, showbase std::string v = "-0,01 EUR"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -380,7 +380,7 @@ } { // positive, showbase std::string v = "1 234 567,89 EUR"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -389,11 +389,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-1 234 567,89 EUR"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -402,11 +402,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "1 234 567,89 Eu-"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -414,7 +414,7 @@ true, ios, err, ex); assert(iter.base() == v.data() + 14); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "1 234 567,89 Eu-"; @@ -489,7 +489,7 @@ } { // zero, showbase std::wstring v = L"0,00 \u20ac"; // EURO SIGN - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -501,7 +501,7 @@ } { // zero, showbase std::wstring v = L"0,00 \u20ac"; // EURO SIGN - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -524,7 +524,7 @@ } { // negative one, showbase std::wstring v = L"-0,01 \u20ac"; // EURO SIGN - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -547,7 +547,7 @@ } { // positive, showbase std::wstring v = convert_thousands_sep(L"1 234 567,89 \u20ac"); // EURO SIGN - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -556,11 +556,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = convert_thousands_sep(L"-1 234 567,89 \u20ac"); // EURO SIGN - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -569,11 +569,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = convert_thousands_sep(L"1 234 567,89 EUR -"); - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -581,7 +581,7 @@ false, ios, err, ex); assert(iter.base() == v.data() + 13); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = convert_thousands_sep(L"1 234 567,89 EUR -"); @@ -655,7 +655,7 @@ } { // zero, showbase std::wstring v = L"0,00 EUR"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -667,7 +667,7 @@ } { // zero, showbase std::wstring v = L"0,00 EUR"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -690,7 +690,7 @@ } { // negative one, showbase std::wstring v = L"-0,01 EUR"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -713,7 +713,7 @@ } { // positive, showbase std::wstring v = convert_thousands_sep(L"1 234 567,89 EUR"); - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -722,11 +722,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = convert_thousands_sep(L"-1 234 567,89 EUR"); - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -735,11 +735,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = convert_thousands_sep(L"1 234 567,89 Eu-"); - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -747,7 +747,7 @@ true, ios, err, ex); assert(iter.base() == v.data() + 14); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = convert_thousands_sep(L"1 234 567,89 Eu-"); diff --git a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_ru_RU.pass.cpp b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_ru_RU.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_ru_RU.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_ru_RU.pass.cpp @@ -155,7 +155,7 @@ } { // zero, showbase std::string v = "0,00 \xD1\x80\xD1\x83\xD0\xB1""."; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -164,7 +164,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 0); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::string v = "-0,01 \xD1\x80\xD1\x83\xD0\xB1""."; @@ -179,7 +179,7 @@ } { // negative one, showbase std::string v = "-0,01 \xD1\x80\xD1\x83\xD0\xB1""."; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -188,7 +188,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -1); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::string v = "1 234 567,89 \xD1\x80\xD1\x83\xD0\xB1""."; @@ -203,7 +203,7 @@ } { // positive, showbase std::string v = "1 234 567,89 \xD1\x80\xD1\x83\xD0\xB1""."; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -212,11 +212,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-1 234 567,89 \xD1\x80\xD1\x83\xD0\xB1""."; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -225,11 +225,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-1 234 567,89 RUB "; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -237,7 +237,7 @@ false, ios, err, ex); assert(iter.base() == v.data() + 14); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-1 234 567,89 RUB "; @@ -323,7 +323,7 @@ #if !defined(APPLE_FIXME) { // zero, showbase std::string v = "0,00 RUB "; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -332,7 +332,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 0); - noshowbase(ios); + std::noshowbase(ios); } #endif { // negative one, showbase @@ -349,7 +349,7 @@ #if !defined(APPLE_FIXME) { // negative one, showbase std::string v = "-0,01 RUB "; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -358,7 +358,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -1); - noshowbase(ios); + std::noshowbase(ios); } #endif { // positive, showbase @@ -375,7 +375,7 @@ #if !defined(APPLE_FIXME) { // positive, showbase std::string v = "1 234 567,89 RUB "; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -384,13 +384,13 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } #endif #if !defined(APPLE_FIXME) { // negative, showbase std::string v = "-1 234 567,89 RUB "; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -399,12 +399,12 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } #endif { // negative, showbase std::string v = "-1 234 567,89 \xD1\x80\xD1\x83\xD0\xB1""."; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -412,7 +412,7 @@ true, ios, err, ex); assert(iter.base() == v.data() + 14); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-1 234 567,89 \xD1\x80\xD1\x83\xD0\xB1""."; @@ -498,7 +498,7 @@ } { // zero, showbase std::wstring v = L"0,00 \x440\x443\x431""."; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -507,7 +507,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 0); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::wstring v = L"-0,01 \x440\x443\x431""."; @@ -522,7 +522,7 @@ } { // negative one, showbase std::wstring v = L"-0,01 \x440\x443\x431""."; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -531,7 +531,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -1); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::wstring v = L"1 234 567,89 \x440\x443\x431""."; @@ -546,7 +546,7 @@ } { // positive, showbase std::wstring v = L"1 234 567,89 \x440\x443\x431""."; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -555,11 +555,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-1 234 567,89 \x440\x443\x431""."; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -568,11 +568,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-1 234 567,89 RUB "; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -580,7 +580,7 @@ false, ios, err, ex); assert(iter.base() == v.data() + 14); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-1 234 567,89 RUB "; @@ -666,7 +666,7 @@ #if !defined(APPLE_FIXME) { // zero, showbase std::wstring v = L"0,00 RUB "; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -675,7 +675,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 0); - noshowbase(ios); + std::noshowbase(ios); } #endif { // negative one, showbase @@ -692,7 +692,7 @@ #if !defined(APPLE_FIXME) { // negative one, showbase std::wstring v = L"-0,01 RUB "; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -701,7 +701,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -1); - noshowbase(ios); + std::noshowbase(ios); } #endif { // positive, showbase @@ -718,7 +718,7 @@ #if !defined(APPLE_FIXME) { // positive, showbase std::wstring v = L"1 234 567,89 RUB "; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -727,13 +727,13 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } #endif #if !defined(APPLE_FIXME) { // negative, showbase std::wstring v = L"-1 234 567,89 RUB "; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -742,12 +742,12 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } #endif { // negative, showbase std::wstring v = L"-1 234 567,89 \x440\x443\x431""."; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -755,7 +755,7 @@ true, ios, err, ex); assert(iter.base() == v.data() + 14); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-1 234 567,89 \x440\x443\x431""."; diff --git a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_zh_CN.pass.cpp b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_zh_CN.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_zh_CN.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_zh_CN.pass.cpp @@ -140,7 +140,7 @@ } { // zero, showbase std::string v = "\xEF\xBF\xA5""0.00"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -149,7 +149,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 0); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::string v = "\xEF\xBF\xA5""-0.01"; @@ -164,7 +164,7 @@ } { // negative one, showbase std::string v = "\xEF\xBF\xA5""-0.01"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -173,7 +173,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -1); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::string v = "\xEF\xBF\xA5""1,234,567.89"; @@ -188,7 +188,7 @@ } { // positive, showbase std::string v = "\xEF\xBF\xA5""1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -197,11 +197,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "\xEF\xBF\xA5""-1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -210,11 +210,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "CNY -1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -222,7 +222,7 @@ false, ios, err, ex); assert(iter.base() == v.data() + 0); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "CNY -1,234,567.89"; @@ -306,7 +306,7 @@ } { // zero, showbase std::string v = "CNY 0.00"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -315,7 +315,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 0); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::string v = "CNY -0.01"; @@ -330,7 +330,7 @@ } { // negative one, showbase std::string v = "CNY -0.01"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -339,7 +339,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -1); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::string v = "CNY 1,234,567.89"; @@ -354,7 +354,7 @@ } { // positive, showbase std::string v = "CNY 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -363,11 +363,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "CNY -1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -376,11 +376,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "\xEF\xBF\xA5""-1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -388,7 +388,7 @@ true, ios, err, ex); assert(iter.base() == v.data() + 0); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "\xEF\xBF\xA5""-1,234,567.89"; @@ -473,7 +473,7 @@ } { // zero, showbase std::wstring v = L"\xFFE5""0.00"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -482,7 +482,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 0); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::wstring v = L"\xFFE5""-0.01"; @@ -497,7 +497,7 @@ } { // negative one, showbase std::wstring v = L"\xFFE5""-0.01"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -506,7 +506,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -1); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::wstring v = L"\xFFE5""1,234,567.89"; @@ -521,7 +521,7 @@ } { // positive, showbase std::wstring v = L"\xFFE5""1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -530,11 +530,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"\xFFE5""-1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -543,11 +543,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"CNY -1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -555,7 +555,7 @@ false, ios, err, ex); assert(iter.base() == v.data() + 0); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"CNY -1,234,567.89"; @@ -639,7 +639,7 @@ } { // zero, showbase std::wstring v = L"CNY 0.00"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -648,7 +648,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 0); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::wstring v = L"CNY -0.01"; @@ -663,7 +663,7 @@ } { // negative one, showbase std::wstring v = L"CNY -0.01"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -672,7 +672,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -1); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::wstring v = L"CNY 1,234,567.89"; @@ -687,7 +687,7 @@ } { // positive, showbase std::wstring v = L"CNY 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -696,11 +696,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == 123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"CNY -1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -709,11 +709,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == -123456789); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"\xFFE5""-1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; long double ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -721,7 +721,7 @@ true, ios, err, ex); assert(iter.base() == v.data() + 0); assert(err == std::ios_base::failbit); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"\xFFE5""-1,234,567.89"; diff --git a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_string_en_US.pass.cpp b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_string_en_US.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_string_en_US.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_string_en_US.pass.cpp @@ -132,7 +132,7 @@ } { // zero, showbase std::string v = "$0.00"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::string ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -141,7 +141,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == "0"); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::string v = "-$0.01"; @@ -156,7 +156,7 @@ } { // negative one, showbase std::string v = "-$0.01"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::string ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -165,7 +165,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == "-1"); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::string v = "$1,234,567.89"; @@ -180,7 +180,7 @@ } { // positive, showbase std::string v = "$1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::string ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -189,11 +189,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == "123456789"); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-$1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::string ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -202,11 +202,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == "-123456789"); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-USD 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::string ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -215,7 +215,7 @@ assert(iter.base() == v.data() + 1); assert(err == std::ios_base::failbit); assert(ex == ""); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-USD 1,234,567.89"; @@ -300,7 +300,7 @@ } { // zero, showbase std::string v = "USD 0.00"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::string ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -309,7 +309,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == "0"); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::string v = "-USD 0.01"; @@ -324,7 +324,7 @@ } { // negative one, showbase std::string v = "-USD 0.01"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::string ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -333,7 +333,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == "-1"); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::string v = "USD 1,234,567.89"; @@ -348,7 +348,7 @@ } { // positive, showbase std::string v = "USD 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::string ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -357,11 +357,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == "123456789"); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-USD 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::string ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -370,11 +370,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == "-123456789"); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-$1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::string ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -383,7 +383,7 @@ assert(iter.base() == v.data() + 1); assert(err == std::ios_base::failbit); assert(ex == ""); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::string v = "-$1,234,567.89"; @@ -469,7 +469,7 @@ } { // zero, showbase std::wstring v = L"$0.00"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::wstring ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -478,7 +478,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == L"0"); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::wstring v = L"-$0.01"; @@ -493,7 +493,7 @@ } { // negative one, showbase std::wstring v = L"-$0.01"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::wstring ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -502,7 +502,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == L"-1"); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::wstring v = L"$1,234,567.89"; @@ -517,7 +517,7 @@ } { // positive, showbase std::wstring v = L"$1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::wstring ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -526,11 +526,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == L"123456789"); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-$1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::wstring ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -539,11 +539,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == L"-123456789"); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-USD 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::wstring ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -552,7 +552,7 @@ assert(iter.base() == v.data() + 1); assert(err == std::ios_base::failbit); assert(ex == L""); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-USD 1,234,567.89"; @@ -637,7 +637,7 @@ } { // zero, showbase std::wstring v = L"USD 0.00"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::wstring ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -646,7 +646,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == L"0"); - noshowbase(ios); + std::noshowbase(ios); } { // negative one, showbase std::wstring v = L"-USD 0.01"; @@ -661,7 +661,7 @@ } { // negative one, showbase std::wstring v = L"-USD 0.01"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::wstring ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -670,7 +670,7 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == L"-1"); - noshowbase(ios); + std::noshowbase(ios); } { // positive, showbase std::wstring v = L"USD 1,234,567.89"; @@ -685,7 +685,7 @@ } { // positive, showbase std::wstring v = L"USD 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::wstring ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -694,11 +694,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == L"123456789"); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-USD 1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::wstring ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -707,11 +707,11 @@ assert(iter.base() == v.data() + v.size()); assert(err == std::ios_base::eofbit); assert(ex == L"-123456789"); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-$1,234,567.89"; - showbase(ios); + std::showbase(ios); typedef cpp17_input_iterator I; std::wstring ex; std::ios_base::iostate err = std::ios_base::goodbit; @@ -720,7 +720,7 @@ assert(iter.base() == v.data() + 1); assert(err == std::ios_base::failbit); assert(ex == L""); - noshowbase(ios); + std::noshowbase(ios); } { // negative, showbase std::wstring v = L"-$1,234,567.89"; diff --git a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_en_US.pass.cpp b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_en_US.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_en_US.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_en_US.pass.cpp @@ -94,7 +94,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -102,7 +102,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -110,7 +110,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -118,7 +118,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -126,9 +126,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -137,9 +137,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -148,9 +148,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -159,7 +159,7 @@ } // char, international - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); { // zero long double v = 0; @@ -191,7 +191,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -199,7 +199,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -207,7 +207,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -215,7 +215,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -223,9 +223,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -234,9 +234,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -245,9 +245,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -259,7 +259,7 @@ { const my_facetw f(1); // wchar_t, national - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); { // zero long double v = 0; @@ -291,7 +291,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -299,7 +299,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -307,7 +307,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -315,7 +315,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -323,9 +323,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -334,9 +334,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -345,9 +345,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -356,7 +356,7 @@ } // wchar_t, international - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); { // zero long double v = 0; @@ -388,7 +388,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -396,7 +396,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -404,7 +404,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -412,7 +412,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -420,9 +420,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -431,9 +431,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -442,9 +442,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); diff --git a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_fr_FR.pass.cpp b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_fr_FR.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_fr_FR.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_fr_FR.pass.cpp @@ -130,7 +130,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -138,7 +138,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -146,7 +146,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -154,7 +154,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -162,9 +162,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -173,9 +173,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -184,9 +184,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -195,7 +195,7 @@ } // char, international - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); { // zero long double v = 0; @@ -227,7 +227,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -235,7 +235,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -243,7 +243,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -251,7 +251,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -259,9 +259,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -270,9 +270,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -281,9 +281,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -295,7 +295,7 @@ { const my_facetw f(1); // wchar_t, national - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); { // zero long double v = 0; @@ -327,7 +327,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -335,7 +335,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -343,7 +343,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -351,7 +351,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -359,9 +359,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -370,9 +370,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -381,9 +381,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -392,7 +392,7 @@ } // wchar_t, international - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); { // zero long double v = 0; @@ -424,7 +424,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -432,7 +432,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -440,7 +440,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -448,7 +448,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -456,9 +456,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -467,9 +467,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -478,9 +478,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); diff --git a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_ru_RU.pass.cpp b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_ru_RU.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_ru_RU.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_ru_RU.pass.cpp @@ -119,7 +119,7 @@ #endif // APPLE_FIXME { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -127,7 +127,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -135,7 +135,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -143,7 +143,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -151,9 +151,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -162,9 +162,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -173,9 +173,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -184,7 +184,7 @@ } // char, international - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); #if !defined(APPLE_FIXME) { // zero @@ -217,7 +217,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -225,7 +225,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -233,7 +233,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -241,7 +241,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -250,9 +250,9 @@ #endif // APPLE_FIXME { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -262,9 +262,9 @@ #if !defined(APPLE_FIXME) { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -273,9 +273,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -288,7 +288,7 @@ { const my_facetw f(1); // wchar_t, national - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); #if !defined(APPLE_FIXME) { // zero @@ -322,7 +322,7 @@ #endif // APPLE_FIXME { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -330,7 +330,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -338,7 +338,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -346,7 +346,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -354,9 +354,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -365,9 +365,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -376,9 +376,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -387,7 +387,7 @@ } // wchar_t, international - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); #if !defined(APPLE_FIXME) { // zero @@ -420,7 +420,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -428,7 +428,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -436,7 +436,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -444,7 +444,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -453,9 +453,9 @@ #endif // APPLE_FIXME { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -465,9 +465,9 @@ #if !defined(APPLE_FIXME) { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -476,9 +476,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); diff --git a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_zh_CN.pass.cpp b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_zh_CN.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_zh_CN.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_zh_CN.pass.cpp @@ -102,7 +102,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -110,7 +110,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -118,7 +118,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -126,7 +126,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -134,9 +134,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -145,9 +145,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -156,9 +156,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -167,7 +167,7 @@ } // char, international - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); { // zero long double v = 0; @@ -199,7 +199,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -207,7 +207,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -215,7 +215,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -223,7 +223,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -231,9 +231,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -242,9 +242,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -253,9 +253,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -267,7 +267,7 @@ { const my_facetw f(1); // wchar_t, national - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); { // zero long double v = 0; @@ -299,7 +299,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -307,7 +307,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -315,7 +315,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -323,7 +323,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -331,9 +331,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -342,9 +342,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -353,9 +353,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -364,7 +364,7 @@ } // wchar_t, international - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); { // zero long double v = 0; @@ -396,7 +396,7 @@ } { // zero, showbase long double v = 0; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -404,7 +404,7 @@ } { // negative one, showbase long double v = -1; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -412,7 +412,7 @@ } { // positive, showbase long double v = 123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -420,7 +420,7 @@ } { // negative, showbase long double v = -123456789; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -428,9 +428,9 @@ } { // negative, showbase, left long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -439,9 +439,9 @@ } { // negative, showbase, internal long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -450,9 +450,9 @@ } { // negative, showbase, right long double v = -123456789; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); diff --git a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_string_en_US.pass.cpp b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_string_en_US.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_string_en_US.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_string_en_US.pass.cpp @@ -95,7 +95,7 @@ } { // zero, showbase std::string v = "0"; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -103,7 +103,7 @@ } { // negative one, showbase std::string v = "-1"; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -111,7 +111,7 @@ } { // positive, showbase std::string v = "123456789"; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -119,7 +119,7 @@ } { // negative, showbase std::string v = "-123456789"; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::string ex(str, iter.base()); @@ -127,9 +127,9 @@ } { // negative, showbase, left std::string v = "-123456789"; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -138,9 +138,9 @@ } { // negative, showbase, internal std::string v = "-123456789"; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -149,9 +149,9 @@ } { // negative, showbase, right std::string v = "-123456789"; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::string ex(str, iter.base()); @@ -160,7 +160,7 @@ } // char, international - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); { // zero std::string v = "0"; @@ -192,7 +192,7 @@ } { // zero, showbase std::string v = "0"; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -200,7 +200,7 @@ } { // negative one, showbase std::string v = "-1"; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -208,7 +208,7 @@ } { // positive, showbase std::string v = "123456789"; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -216,7 +216,7 @@ } { // negative, showbase std::string v = "-123456789"; - showbase(ios); + std::showbase(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::string ex(str, iter.base()); @@ -224,9 +224,9 @@ } { // negative, showbase, left std::string v = "-123456789"; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -235,9 +235,9 @@ } { // negative, showbase, internal std::string v = "-123456789"; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -246,9 +246,9 @@ } { // negative, showbase, right std::string v = "-123456789"; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); char str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::string ex(str, iter.base()); @@ -260,7 +260,7 @@ { const my_facetw f(1); // wchar_t, national - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); { // zero std::wstring v = L"0"; @@ -292,7 +292,7 @@ } { // zero, showbase std::wstring v = L"0"; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -300,7 +300,7 @@ } { // negative one, showbase std::wstring v = L"-1"; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -308,7 +308,7 @@ } { // positive, showbase std::wstring v = L"123456789"; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -316,7 +316,7 @@ } { // negative, showbase std::wstring v = L"-123456789"; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, '*', v); std::wstring ex(str, iter.base()); @@ -324,9 +324,9 @@ } { // negative, showbase, left std::wstring v = L"-123456789"; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -335,9 +335,9 @@ } { // negative, showbase, internal std::wstring v = L"-123456789"; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -346,9 +346,9 @@ } { // negative, showbase, right std::wstring v = L"-123456789"; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), false, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -357,7 +357,7 @@ } // wchar_t, international - noshowbase(ios); + std::noshowbase(ios); ios.unsetf(std::ios_base::adjustfield); { // zero std::wstring v = L"0"; @@ -389,7 +389,7 @@ } { // zero, showbase std::wstring v = L"0"; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -397,7 +397,7 @@ } { // negative one, showbase std::wstring v = L"-1"; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -405,7 +405,7 @@ } { // positive, showbase std::wstring v = L"123456789"; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -413,7 +413,7 @@ } { // negative, showbase std::wstring v = L"-123456789"; - showbase(ios); + std::showbase(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, '*', v); std::wstring ex(str, iter.base()); @@ -421,9 +421,9 @@ } { // negative, showbase, left std::wstring v = L"-123456789"; - showbase(ios); + std::showbase(ios); ios.width(20); - left(ios); + std::left(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -432,9 +432,9 @@ } { // negative, showbase, internal std::wstring v = L"-123456789"; - showbase(ios); + std::showbase(ios); ios.width(20); - internal(ios); + std::internal(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); @@ -443,9 +443,9 @@ } { // negative, showbase, right std::wstring v = L"-123456789"; - showbase(ios); + std::showbase(ios); ios.width(20); - right(ios); + std::right(ios); wchar_t str[100]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), true, ios, ' ', v); std::wstring ex(str, iter.base()); diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_bool.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_bool.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_bool.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_bool.pass.cpp @@ -62,7 +62,7 @@ } { std::ios ios(0); - boolalpha(ios); + std::boolalpha(ios); { bool v = false; char str[50]; @@ -80,7 +80,7 @@ } { std::ios ios(0); - boolalpha(ios); + std::boolalpha(ios); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); { bool v = false; diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_double.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_double.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_double.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_double.pass.cpp @@ -61,11 +61,11 @@ { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -77,7 +77,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -85,7 +85,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -93,7 +93,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -111,7 +111,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -119,7 +119,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -127,7 +127,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -136,7 +136,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -148,7 +148,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -156,7 +156,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -164,7 +164,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -182,7 +182,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -190,7 +190,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -198,7 +198,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -208,9 +208,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -222,7 +222,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -230,7 +230,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -238,7 +238,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -256,7 +256,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -264,7 +264,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -272,7 +272,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -281,7 +281,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -293,7 +293,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -301,7 +301,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -309,7 +309,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -327,7 +327,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -335,7 +335,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -343,7 +343,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -354,11 +354,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -370,7 +370,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -378,7 +378,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -386,7 +386,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -404,7 +404,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -412,7 +412,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -420,7 +420,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -429,7 +429,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -441,7 +441,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -449,7 +449,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -457,7 +457,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -475,7 +475,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -483,7 +483,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -491,7 +491,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -501,9 +501,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -515,7 +515,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -523,7 +523,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -531,7 +531,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -549,7 +549,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -557,7 +557,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -565,7 +565,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -574,7 +574,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -586,7 +586,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -594,7 +594,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -602,7 +602,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -620,7 +620,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -628,7 +628,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -636,7 +636,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -650,11 +650,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -666,7 +666,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -674,7 +674,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -682,7 +682,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -700,7 +700,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -708,7 +708,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -716,7 +716,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -725,7 +725,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -737,7 +737,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -745,7 +745,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -753,7 +753,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -771,7 +771,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -779,7 +779,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -787,7 +787,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -797,9 +797,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -811,7 +811,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -819,7 +819,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -827,7 +827,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -845,7 +845,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -853,7 +853,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -861,7 +861,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -870,7 +870,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -882,7 +882,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -890,7 +890,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -898,7 +898,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -916,7 +916,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -924,7 +924,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -932,7 +932,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -943,11 +943,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -959,7 +959,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -967,7 +967,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -975,7 +975,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -993,7 +993,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1001,7 +1001,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1009,7 +1009,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1018,7 +1018,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1030,7 +1030,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1038,7 +1038,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1046,7 +1046,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1064,7 +1064,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1072,7 +1072,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1080,7 +1080,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1090,9 +1090,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1104,7 +1104,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1112,7 +1112,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1120,7 +1120,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1138,7 +1138,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1146,7 +1146,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1154,7 +1154,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1163,7 +1163,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1175,7 +1175,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1183,7 +1183,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1191,7 +1191,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1209,7 +1209,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1217,7 +1217,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1225,7 +1225,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1239,11 +1239,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1255,7 +1255,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1263,7 +1263,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1271,7 +1271,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1289,7 +1289,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1297,7 +1297,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1305,7 +1305,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1314,7 +1314,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1326,7 +1326,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1334,7 +1334,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1342,7 +1342,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1360,7 +1360,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1368,7 +1368,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1376,7 +1376,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1386,9 +1386,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1400,7 +1400,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1408,7 +1408,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1416,7 +1416,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1434,7 +1434,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1442,7 +1442,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1450,7 +1450,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1459,7 +1459,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1471,7 +1471,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1479,7 +1479,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1487,7 +1487,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1505,7 +1505,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1513,7 +1513,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1521,7 +1521,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1532,11 +1532,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1548,7 +1548,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1556,7 +1556,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1564,7 +1564,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1582,7 +1582,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1590,7 +1590,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1598,7 +1598,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1607,7 +1607,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1619,7 +1619,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1627,7 +1627,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1635,7 +1635,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1653,7 +1653,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1661,7 +1661,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1669,7 +1669,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1679,9 +1679,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1693,7 +1693,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1701,7 +1701,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1709,7 +1709,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1727,7 +1727,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1735,7 +1735,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1743,7 +1743,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1752,7 +1752,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1764,7 +1764,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1772,7 +1772,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1780,7 +1780,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1798,7 +1798,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1806,7 +1806,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1814,7 +1814,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1828,11 +1828,11 @@ } ios.precision(16); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1844,7 +1844,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1852,7 +1852,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1860,7 +1860,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1878,7 +1878,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1886,7 +1886,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1894,7 +1894,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1903,7 +1903,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1915,7 +1915,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1923,7 +1923,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1931,7 +1931,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1949,7 +1949,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1957,7 +1957,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1965,7 +1965,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1975,9 +1975,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1989,7 +1989,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1997,7 +1997,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2005,7 +2005,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2023,7 +2023,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2031,7 +2031,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2039,7 +2039,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2048,7 +2048,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2060,7 +2060,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2068,7 +2068,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2076,7 +2076,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2094,7 +2094,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2102,7 +2102,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2110,7 +2110,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2121,11 +2121,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -2137,7 +2137,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2145,7 +2145,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2153,7 +2153,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2171,7 +2171,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2179,7 +2179,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2187,7 +2187,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2196,7 +2196,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2208,7 +2208,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2216,7 +2216,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2224,7 +2224,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2242,7 +2242,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2250,7 +2250,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2258,7 +2258,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2268,9 +2268,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -2282,7 +2282,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2290,7 +2290,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2298,7 +2298,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2316,7 +2316,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2324,7 +2324,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2332,7 +2332,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2341,7 +2341,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2353,7 +2353,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2361,7 +2361,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2369,7 +2369,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2387,7 +2387,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2395,7 +2395,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2403,7 +2403,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2417,11 +2417,11 @@ } ios.precision(60); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -2433,7 +2433,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2441,7 +2441,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2449,7 +2449,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2467,7 +2467,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2475,7 +2475,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2483,7 +2483,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2492,7 +2492,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2504,7 +2504,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2512,7 +2512,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2520,7 +2520,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2538,7 +2538,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2546,7 +2546,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2554,7 +2554,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2564,9 +2564,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -2578,7 +2578,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2586,7 +2586,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2594,7 +2594,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2612,7 +2612,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2620,7 +2620,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2628,7 +2628,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2637,7 +2637,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2649,7 +2649,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2657,7 +2657,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2665,7 +2665,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2683,7 +2683,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2691,7 +2691,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2699,7 +2699,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2710,11 +2710,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -2726,7 +2726,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2734,7 +2734,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2742,7 +2742,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2760,7 +2760,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2768,7 +2768,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2776,7 +2776,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2785,7 +2785,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2797,7 +2797,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2805,7 +2805,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2813,7 +2813,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2831,7 +2831,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2839,7 +2839,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2847,7 +2847,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2857,9 +2857,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -2871,7 +2871,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2879,7 +2879,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2887,7 +2887,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2905,7 +2905,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2913,7 +2913,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2921,7 +2921,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2930,7 +2930,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2942,7 +2942,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2950,7 +2950,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2958,7 +2958,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2976,7 +2976,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2984,7 +2984,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2992,7 +2992,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3021,11 +3021,11 @@ { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3037,7 +3037,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3045,7 +3045,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3053,7 +3053,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3071,7 +3071,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3079,7 +3079,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3087,7 +3087,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3096,7 +3096,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3108,7 +3108,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3116,7 +3116,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3124,7 +3124,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3142,7 +3142,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3150,7 +3150,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3158,7 +3158,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3168,9 +3168,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3182,7 +3182,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3190,7 +3190,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3198,7 +3198,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3216,7 +3216,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3224,7 +3224,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3232,7 +3232,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3241,7 +3241,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3253,7 +3253,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3261,7 +3261,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3269,7 +3269,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3287,7 +3287,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3295,7 +3295,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3303,7 +3303,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3314,11 +3314,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3330,7 +3330,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3338,7 +3338,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3346,7 +3346,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3364,7 +3364,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3372,7 +3372,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3380,7 +3380,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3389,7 +3389,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3401,7 +3401,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3409,7 +3409,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3417,7 +3417,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3435,7 +3435,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3443,7 +3443,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3451,7 +3451,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3461,9 +3461,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3475,7 +3475,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3483,7 +3483,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3491,7 +3491,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3509,7 +3509,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3517,7 +3517,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3525,7 +3525,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3534,7 +3534,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3546,7 +3546,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3554,7 +3554,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3562,7 +3562,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3580,7 +3580,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3588,7 +3588,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3596,7 +3596,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3610,11 +3610,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3626,7 +3626,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3634,7 +3634,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3642,7 +3642,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3660,7 +3660,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3668,7 +3668,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3676,7 +3676,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3685,7 +3685,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3697,7 +3697,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3705,7 +3705,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3713,7 +3713,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3731,7 +3731,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3739,7 +3739,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3747,7 +3747,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3757,9 +3757,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3771,7 +3771,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3779,7 +3779,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3787,7 +3787,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3805,7 +3805,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3813,7 +3813,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3821,7 +3821,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3830,7 +3830,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3842,7 +3842,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3850,7 +3850,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3858,7 +3858,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3876,7 +3876,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3884,7 +3884,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3892,7 +3892,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3903,11 +3903,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3919,7 +3919,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3927,7 +3927,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3935,7 +3935,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3953,7 +3953,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3961,7 +3961,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3969,7 +3969,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3978,7 +3978,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3990,7 +3990,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3998,7 +3998,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4006,7 +4006,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4024,7 +4024,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4032,7 +4032,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4040,7 +4040,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4050,9 +4050,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4064,7 +4064,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4072,7 +4072,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4080,7 +4080,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4098,7 +4098,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4106,7 +4106,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4114,7 +4114,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4123,7 +4123,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -4135,7 +4135,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4143,7 +4143,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4151,7 +4151,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4169,7 +4169,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4177,7 +4177,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4185,7 +4185,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4199,11 +4199,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4215,7 +4215,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4223,7 +4223,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4231,7 +4231,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4249,7 +4249,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4257,7 +4257,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4265,7 +4265,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4274,7 +4274,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -4286,7 +4286,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4294,7 +4294,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4302,7 +4302,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4320,7 +4320,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4328,7 +4328,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4336,7 +4336,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4346,9 +4346,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4360,7 +4360,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4368,7 +4368,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4376,7 +4376,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4394,7 +4394,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4402,7 +4402,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4410,7 +4410,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4419,7 +4419,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -4431,7 +4431,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4439,7 +4439,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4447,7 +4447,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4465,7 +4465,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4473,7 +4473,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4481,7 +4481,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4492,11 +4492,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4508,7 +4508,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4516,7 +4516,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4524,7 +4524,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4542,7 +4542,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4550,7 +4550,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4558,7 +4558,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4567,7 +4567,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -4579,7 +4579,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4587,7 +4587,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4595,7 +4595,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4613,7 +4613,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4621,7 +4621,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4629,7 +4629,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4639,9 +4639,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4653,7 +4653,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4661,7 +4661,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4669,7 +4669,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4687,7 +4687,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4695,7 +4695,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4703,7 +4703,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4712,7 +4712,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -4724,7 +4724,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4732,7 +4732,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4740,7 +4740,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4758,7 +4758,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4766,7 +4766,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4774,7 +4774,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4788,11 +4788,11 @@ } ios.precision(16); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4804,7 +4804,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4812,7 +4812,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4820,7 +4820,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4838,7 +4838,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4846,7 +4846,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4854,7 +4854,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4863,7 +4863,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -4875,7 +4875,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4883,7 +4883,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4891,7 +4891,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4909,7 +4909,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4917,7 +4917,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4925,7 +4925,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4935,9 +4935,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4949,7 +4949,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4957,7 +4957,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4965,7 +4965,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4983,7 +4983,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4991,7 +4991,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4999,7 +4999,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5008,7 +5008,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5020,7 +5020,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5028,7 +5028,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5036,7 +5036,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5054,7 +5054,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5062,7 +5062,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5070,7 +5070,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5081,11 +5081,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5097,7 +5097,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5105,7 +5105,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5113,7 +5113,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5131,7 +5131,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5139,7 +5139,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5147,7 +5147,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5156,7 +5156,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5168,7 +5168,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5176,7 +5176,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5184,7 +5184,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5202,7 +5202,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5210,7 +5210,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5218,7 +5218,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5228,9 +5228,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5242,7 +5242,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5250,7 +5250,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5258,7 +5258,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5276,7 +5276,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5284,7 +5284,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5292,7 +5292,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5301,7 +5301,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5313,7 +5313,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5321,7 +5321,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5329,7 +5329,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5347,7 +5347,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5355,7 +5355,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5363,7 +5363,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5377,11 +5377,11 @@ } ios.precision(60); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5393,7 +5393,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5401,7 +5401,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5409,7 +5409,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5427,7 +5427,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5435,7 +5435,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5443,7 +5443,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5452,7 +5452,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5464,7 +5464,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5472,7 +5472,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5480,7 +5480,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5498,7 +5498,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5506,7 +5506,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5514,7 +5514,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5524,9 +5524,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5538,7 +5538,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5546,7 +5546,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5554,7 +5554,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5572,7 +5572,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5580,7 +5580,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5588,7 +5588,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5597,7 +5597,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5609,7 +5609,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5617,7 +5617,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5625,7 +5625,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5643,7 +5643,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5651,7 +5651,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5659,7 +5659,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5670,11 +5670,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5686,7 +5686,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5694,7 +5694,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5702,7 +5702,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5720,7 +5720,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5728,7 +5728,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5736,7 +5736,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5745,7 +5745,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5757,7 +5757,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5765,7 +5765,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5773,7 +5773,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5791,7 +5791,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5799,7 +5799,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5807,7 +5807,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5817,9 +5817,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5831,7 +5831,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5839,7 +5839,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5847,7 +5847,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5865,7 +5865,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5873,7 +5873,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5881,7 +5881,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5890,7 +5890,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5902,7 +5902,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5910,7 +5910,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5918,7 +5918,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5936,7 +5936,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5944,7 +5944,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5952,7 +5952,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5977,16 +5977,16 @@ { double v = +0.; std::ios ios(0); - fixed(ios); + std::fixed(ios); // %f { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5998,7 +5998,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6006,7 +6006,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6014,7 +6014,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6032,7 +6032,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6040,7 +6040,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6048,7 +6048,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6057,7 +6057,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6069,7 +6069,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6077,7 +6077,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6085,7 +6085,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6103,7 +6103,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6111,7 +6111,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6119,7 +6119,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6129,9 +6129,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -6143,7 +6143,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6151,7 +6151,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6159,7 +6159,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6177,7 +6177,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6185,7 +6185,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6193,7 +6193,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6202,7 +6202,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6214,7 +6214,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6222,7 +6222,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6230,7 +6230,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6248,7 +6248,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6256,7 +6256,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6264,7 +6264,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6275,11 +6275,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -6291,7 +6291,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6299,7 +6299,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6307,7 +6307,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6325,7 +6325,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6333,7 +6333,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6341,7 +6341,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6350,7 +6350,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6362,7 +6362,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6370,7 +6370,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6378,7 +6378,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6396,7 +6396,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6404,7 +6404,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6412,7 +6412,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6422,9 +6422,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -6436,7 +6436,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6444,7 +6444,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6452,7 +6452,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6470,7 +6470,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6478,7 +6478,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6486,7 +6486,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6495,7 +6495,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6507,7 +6507,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6515,7 +6515,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6523,7 +6523,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6541,7 +6541,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6549,7 +6549,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6557,7 +6557,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6571,11 +6571,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -6587,7 +6587,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6595,7 +6595,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6603,7 +6603,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6621,7 +6621,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6629,7 +6629,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6637,7 +6637,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6646,7 +6646,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6658,7 +6658,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6666,7 +6666,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6674,7 +6674,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6692,7 +6692,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6700,7 +6700,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6708,7 +6708,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6718,9 +6718,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -6732,7 +6732,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6740,7 +6740,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6748,7 +6748,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6766,7 +6766,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6774,7 +6774,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6782,7 +6782,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6791,7 +6791,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6803,7 +6803,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6811,7 +6811,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6819,7 +6819,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6837,7 +6837,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6845,7 +6845,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6853,7 +6853,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6864,11 +6864,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -6880,7 +6880,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6888,7 +6888,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6896,7 +6896,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6914,7 +6914,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6922,7 +6922,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6930,7 +6930,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6939,7 +6939,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6951,7 +6951,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6959,7 +6959,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6967,7 +6967,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6985,7 +6985,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6993,7 +6993,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7001,7 +7001,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7011,9 +7011,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7025,7 +7025,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7033,7 +7033,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7041,7 +7041,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7059,7 +7059,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7067,7 +7067,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7075,7 +7075,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7084,7 +7084,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7096,7 +7096,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7104,7 +7104,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7112,7 +7112,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7130,7 +7130,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7138,7 +7138,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7146,7 +7146,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7160,11 +7160,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7176,7 +7176,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7184,7 +7184,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7192,7 +7192,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7210,7 +7210,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7218,7 +7218,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7226,7 +7226,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7235,7 +7235,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7247,7 +7247,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7255,7 +7255,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7263,7 +7263,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7281,7 +7281,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7289,7 +7289,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7297,7 +7297,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7307,9 +7307,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7321,7 +7321,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7329,7 +7329,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7337,7 +7337,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7355,7 +7355,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7363,7 +7363,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7371,7 +7371,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7380,7 +7380,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7392,7 +7392,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7400,7 +7400,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7408,7 +7408,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7426,7 +7426,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7434,7 +7434,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7442,7 +7442,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7453,11 +7453,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7469,7 +7469,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7477,7 +7477,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7485,7 +7485,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7503,7 +7503,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7511,7 +7511,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7519,7 +7519,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7528,7 +7528,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7540,7 +7540,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7548,7 +7548,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7556,7 +7556,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7574,7 +7574,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7582,7 +7582,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7590,7 +7590,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7600,9 +7600,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7614,7 +7614,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7622,7 +7622,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7630,7 +7630,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7648,7 +7648,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7656,7 +7656,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7664,7 +7664,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7673,7 +7673,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7685,7 +7685,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7693,7 +7693,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7701,7 +7701,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7719,7 +7719,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7727,7 +7727,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7735,7 +7735,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7749,11 +7749,11 @@ } ios.precision(16); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7765,7 +7765,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7773,7 +7773,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7781,7 +7781,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7799,7 +7799,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7807,7 +7807,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7815,7 +7815,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7824,7 +7824,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7836,7 +7836,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7844,7 +7844,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7852,7 +7852,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7870,7 +7870,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7878,7 +7878,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7886,7 +7886,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7896,9 +7896,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7910,7 +7910,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7918,7 +7918,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7926,7 +7926,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7944,7 +7944,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7952,7 +7952,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7960,7 +7960,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7969,7 +7969,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7981,7 +7981,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7989,7 +7989,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7997,7 +7997,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8015,7 +8015,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8023,7 +8023,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8031,7 +8031,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8042,11 +8042,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8058,7 +8058,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8066,7 +8066,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8074,7 +8074,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8092,7 +8092,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8100,7 +8100,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8108,7 +8108,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8117,7 +8117,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -8129,7 +8129,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8137,7 +8137,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8145,7 +8145,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8163,7 +8163,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8171,7 +8171,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8179,7 +8179,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8189,9 +8189,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8203,7 +8203,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8211,7 +8211,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8219,7 +8219,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8237,7 +8237,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8245,7 +8245,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8253,7 +8253,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8262,7 +8262,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -8274,7 +8274,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8282,7 +8282,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8290,7 +8290,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8308,7 +8308,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8316,7 +8316,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8324,7 +8324,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8338,11 +8338,11 @@ } ios.precision(60); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8354,7 +8354,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8362,7 +8362,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8370,7 +8370,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8388,7 +8388,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8396,7 +8396,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8404,7 +8404,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8413,7 +8413,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -8425,7 +8425,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8433,7 +8433,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8441,7 +8441,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8459,7 +8459,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8467,7 +8467,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8475,7 +8475,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8485,9 +8485,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8499,7 +8499,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8507,7 +8507,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8515,7 +8515,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8533,7 +8533,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8541,7 +8541,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8549,7 +8549,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8558,7 +8558,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -8570,7 +8570,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8578,7 +8578,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8586,7 +8586,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8604,7 +8604,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8612,7 +8612,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8620,7 +8620,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8631,11 +8631,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8647,7 +8647,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8655,7 +8655,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8663,7 +8663,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8681,7 +8681,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8689,7 +8689,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8697,7 +8697,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8706,7 +8706,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -8718,7 +8718,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8726,7 +8726,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8734,7 +8734,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8752,7 +8752,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8760,7 +8760,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8768,7 +8768,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8778,9 +8778,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8792,7 +8792,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8800,7 +8800,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8808,7 +8808,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8826,7 +8826,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8834,7 +8834,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8842,7 +8842,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8851,7 +8851,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -8863,7 +8863,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8871,7 +8871,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8879,7 +8879,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8897,7 +8897,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8905,7 +8905,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8913,7 +8913,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8938,16 +8938,16 @@ { double v = 1234567890.125; std::ios ios(0); - fixed(ios); + std::fixed(ios); // %f { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8959,7 +8959,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8967,7 +8967,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8975,7 +8975,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8993,7 +8993,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9001,7 +9001,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9009,7 +9009,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9018,7 +9018,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9030,7 +9030,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9038,7 +9038,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9046,7 +9046,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9064,7 +9064,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9072,7 +9072,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9080,7 +9080,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9090,9 +9090,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9104,7 +9104,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9112,7 +9112,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9120,7 +9120,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9138,7 +9138,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9146,7 +9146,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9154,7 +9154,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9163,7 +9163,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9175,7 +9175,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9183,7 +9183,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9191,7 +9191,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9209,7 +9209,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9217,7 +9217,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9225,7 +9225,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9236,11 +9236,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9252,7 +9252,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9260,7 +9260,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9268,7 +9268,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9286,7 +9286,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9294,7 +9294,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9302,7 +9302,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9311,7 +9311,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9323,7 +9323,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9331,7 +9331,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9339,7 +9339,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9357,7 +9357,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9365,7 +9365,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9373,7 +9373,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9383,9 +9383,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9397,7 +9397,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9405,7 +9405,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9413,7 +9413,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9431,7 +9431,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9439,7 +9439,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9447,7 +9447,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9456,7 +9456,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9468,7 +9468,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9476,7 +9476,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9484,7 +9484,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9502,7 +9502,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9510,7 +9510,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9518,7 +9518,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9532,11 +9532,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9548,7 +9548,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9556,7 +9556,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9564,7 +9564,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9582,7 +9582,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9590,7 +9590,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9598,7 +9598,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9607,7 +9607,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9619,7 +9619,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9627,7 +9627,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9635,7 +9635,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9653,7 +9653,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9661,7 +9661,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9669,7 +9669,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9679,9 +9679,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9693,7 +9693,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9701,7 +9701,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9709,7 +9709,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9727,7 +9727,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9735,7 +9735,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9743,7 +9743,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9752,7 +9752,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9764,7 +9764,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9772,7 +9772,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9780,7 +9780,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9798,7 +9798,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9806,7 +9806,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9814,7 +9814,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9825,11 +9825,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9841,7 +9841,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9849,7 +9849,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9857,7 +9857,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9875,7 +9875,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9883,7 +9883,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9891,7 +9891,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9900,7 +9900,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9912,7 +9912,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9920,7 +9920,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9928,7 +9928,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9946,7 +9946,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9954,7 +9954,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9962,7 +9962,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9972,9 +9972,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9986,7 +9986,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9994,7 +9994,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10002,7 +10002,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10020,7 +10020,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10028,7 +10028,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10036,7 +10036,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10045,7 +10045,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10057,7 +10057,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10065,7 +10065,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10073,7 +10073,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10091,7 +10091,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10099,7 +10099,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10107,7 +10107,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10121,11 +10121,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -10137,7 +10137,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10145,7 +10145,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10153,7 +10153,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10171,7 +10171,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10179,7 +10179,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10187,7 +10187,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10196,7 +10196,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10208,7 +10208,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10216,7 +10216,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10224,7 +10224,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10242,7 +10242,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10250,7 +10250,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10258,7 +10258,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10268,9 +10268,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -10282,7 +10282,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10290,7 +10290,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10298,7 +10298,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10316,7 +10316,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10324,7 +10324,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10332,7 +10332,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10341,7 +10341,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10353,7 +10353,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10361,7 +10361,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10369,7 +10369,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10387,7 +10387,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10395,7 +10395,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10403,7 +10403,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10414,11 +10414,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -10430,7 +10430,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10438,7 +10438,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10446,7 +10446,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10464,7 +10464,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10472,7 +10472,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10480,7 +10480,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10489,7 +10489,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10501,7 +10501,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10509,7 +10509,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10517,7 +10517,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10535,7 +10535,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10543,7 +10543,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10551,7 +10551,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10561,9 +10561,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -10575,7 +10575,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10583,7 +10583,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10591,7 +10591,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10609,7 +10609,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10617,7 +10617,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10625,7 +10625,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10634,7 +10634,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10646,7 +10646,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10654,7 +10654,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10662,7 +10662,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10680,7 +10680,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10688,7 +10688,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10696,7 +10696,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10725,16 +10725,16 @@ { double v = -0.; std::ios ios(0); - scientific(ios); + std::scientific(ios); // %e { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -10746,7 +10746,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10754,7 +10754,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10762,7 +10762,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10780,7 +10780,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10788,7 +10788,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10796,7 +10796,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10805,7 +10805,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10817,7 +10817,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10825,7 +10825,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10833,7 +10833,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10851,7 +10851,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10859,7 +10859,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10867,7 +10867,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10877,9 +10877,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -10891,7 +10891,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10899,7 +10899,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10907,7 +10907,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10925,7 +10925,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10933,7 +10933,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10941,7 +10941,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10950,7 +10950,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10962,7 +10962,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10970,7 +10970,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10978,7 +10978,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10996,7 +10996,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11004,7 +11004,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11012,7 +11012,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11023,11 +11023,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11039,7 +11039,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11047,7 +11047,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11055,7 +11055,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11073,7 +11073,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11081,7 +11081,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11089,7 +11089,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11098,7 +11098,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -11110,7 +11110,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11118,7 +11118,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11126,7 +11126,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11144,7 +11144,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11152,7 +11152,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11160,7 +11160,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11170,9 +11170,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11184,7 +11184,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11192,7 +11192,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11200,7 +11200,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11218,7 +11218,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11226,7 +11226,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11234,7 +11234,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11243,7 +11243,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -11255,7 +11255,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11263,7 +11263,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11271,7 +11271,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11289,7 +11289,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11297,7 +11297,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11305,7 +11305,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11319,11 +11319,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11335,7 +11335,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11343,7 +11343,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11351,7 +11351,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11369,7 +11369,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11377,7 +11377,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11385,7 +11385,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11394,7 +11394,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -11406,7 +11406,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11414,7 +11414,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11422,7 +11422,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11440,7 +11440,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11448,7 +11448,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11456,7 +11456,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11466,9 +11466,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11480,7 +11480,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11488,7 +11488,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11496,7 +11496,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11514,7 +11514,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11522,7 +11522,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11530,7 +11530,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11539,7 +11539,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -11551,7 +11551,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11559,7 +11559,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11567,7 +11567,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11585,7 +11585,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11593,7 +11593,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11601,7 +11601,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11612,11 +11612,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11628,7 +11628,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11636,7 +11636,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11644,7 +11644,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11662,7 +11662,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11670,7 +11670,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11678,7 +11678,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11687,7 +11687,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -11699,7 +11699,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11707,7 +11707,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11715,7 +11715,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11733,7 +11733,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11741,7 +11741,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11749,7 +11749,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11759,9 +11759,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11773,7 +11773,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11781,7 +11781,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11789,7 +11789,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11807,7 +11807,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11815,7 +11815,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11823,7 +11823,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11832,7 +11832,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -11844,7 +11844,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11852,7 +11852,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11860,7 +11860,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11878,7 +11878,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11886,7 +11886,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11894,7 +11894,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11908,11 +11908,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11924,7 +11924,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11932,7 +11932,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11940,7 +11940,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11958,7 +11958,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11966,7 +11966,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11974,7 +11974,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11983,7 +11983,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -11995,7 +11995,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12003,7 +12003,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12011,7 +12011,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12029,7 +12029,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12037,7 +12037,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12045,7 +12045,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12055,9 +12055,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12069,7 +12069,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12077,7 +12077,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12085,7 +12085,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12103,7 +12103,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12111,7 +12111,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12119,7 +12119,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12128,7 +12128,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -12140,7 +12140,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12148,7 +12148,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12156,7 +12156,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12174,7 +12174,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12182,7 +12182,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12190,7 +12190,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12201,11 +12201,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12217,7 +12217,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12225,7 +12225,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12233,7 +12233,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12251,7 +12251,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12259,7 +12259,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12267,7 +12267,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12276,7 +12276,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -12288,7 +12288,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12296,7 +12296,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12304,7 +12304,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12322,7 +12322,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12330,7 +12330,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12338,7 +12338,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12348,9 +12348,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12362,7 +12362,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12370,7 +12370,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12378,7 +12378,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12396,7 +12396,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12404,7 +12404,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12412,7 +12412,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12421,7 +12421,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -12433,7 +12433,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12441,7 +12441,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12449,7 +12449,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12467,7 +12467,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12475,7 +12475,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12483,7 +12483,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12514,16 +12514,16 @@ { double v = 1234567890.125; std::ios ios(0); - scientific(ios); + std::scientific(ios); // %e { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12535,7 +12535,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12543,7 +12543,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12551,7 +12551,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12569,7 +12569,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12577,7 +12577,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12585,7 +12585,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12594,7 +12594,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -12606,7 +12606,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12614,7 +12614,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12622,7 +12622,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12640,7 +12640,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12648,7 +12648,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12656,7 +12656,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12666,9 +12666,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12680,7 +12680,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12688,7 +12688,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12696,7 +12696,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12714,7 +12714,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12722,7 +12722,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12730,7 +12730,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12739,7 +12739,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -12751,7 +12751,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12759,7 +12759,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12767,7 +12767,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12785,7 +12785,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12793,7 +12793,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12801,7 +12801,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12812,11 +12812,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12828,7 +12828,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12836,7 +12836,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12844,7 +12844,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12862,7 +12862,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12870,7 +12870,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12878,7 +12878,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12887,7 +12887,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -12899,7 +12899,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12907,7 +12907,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12915,7 +12915,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12933,7 +12933,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12941,7 +12941,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12949,7 +12949,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12959,9 +12959,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12973,7 +12973,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12981,7 +12981,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12989,7 +12989,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13007,7 +13007,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13015,7 +13015,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13023,7 +13023,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13032,7 +13032,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13044,7 +13044,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13052,7 +13052,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13060,7 +13060,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13078,7 +13078,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13086,7 +13086,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13094,7 +13094,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13108,11 +13108,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -13124,7 +13124,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13132,7 +13132,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13140,7 +13140,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13158,7 +13158,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13166,7 +13166,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13174,7 +13174,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13183,7 +13183,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13195,7 +13195,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13203,7 +13203,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13211,7 +13211,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13229,7 +13229,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13237,7 +13237,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13245,7 +13245,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13255,9 +13255,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -13269,7 +13269,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13277,7 +13277,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13285,7 +13285,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13303,7 +13303,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13311,7 +13311,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13319,7 +13319,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13328,7 +13328,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13340,7 +13340,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13348,7 +13348,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13356,7 +13356,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13374,7 +13374,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13382,7 +13382,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13390,7 +13390,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13401,11 +13401,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -13417,7 +13417,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13425,7 +13425,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13433,7 +13433,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13451,7 +13451,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13459,7 +13459,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13467,7 +13467,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13476,7 +13476,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13488,7 +13488,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13496,7 +13496,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13504,7 +13504,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13522,7 +13522,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13530,7 +13530,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13538,7 +13538,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13548,9 +13548,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -13562,7 +13562,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13570,7 +13570,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13578,7 +13578,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13596,7 +13596,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13604,7 +13604,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13612,7 +13612,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13621,7 +13621,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13633,7 +13633,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13641,7 +13641,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13649,7 +13649,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13667,7 +13667,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13675,7 +13675,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13683,7 +13683,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13703,11 +13703,11 @@ } ios.precision(60); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -13719,7 +13719,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13727,7 +13727,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13735,7 +13735,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13753,7 +13753,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13761,7 +13761,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13769,7 +13769,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13778,7 +13778,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13790,7 +13790,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13798,7 +13798,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13806,7 +13806,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13824,7 +13824,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13832,7 +13832,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13840,7 +13840,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13850,9 +13850,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -13864,7 +13864,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13872,7 +13872,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13880,7 +13880,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13898,7 +13898,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13906,7 +13906,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13914,7 +13914,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13923,7 +13923,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13935,7 +13935,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13943,7 +13943,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13951,7 +13951,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13969,7 +13969,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13977,7 +13977,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13985,7 +13985,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13996,11 +13996,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14012,7 +14012,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14020,7 +14020,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14028,7 +14028,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14046,7 +14046,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14054,7 +14054,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14062,7 +14062,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14071,7 +14071,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14083,7 +14083,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14091,7 +14091,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14099,7 +14099,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14117,7 +14117,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14125,7 +14125,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14133,7 +14133,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14143,9 +14143,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14157,7 +14157,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14165,7 +14165,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14173,7 +14173,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14191,7 +14191,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14199,7 +14199,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14207,7 +14207,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14216,7 +14216,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14228,7 +14228,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14236,7 +14236,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14244,7 +14244,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14262,7 +14262,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14270,7 +14270,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14278,7 +14278,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14303,16 +14303,16 @@ { double v = -0.; std::ios ios(0); - hexfloat(ios); + std::hexfloat(ios); // %a { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14324,7 +14324,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14332,7 +14332,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14340,7 +14340,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14358,7 +14358,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14366,7 +14366,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14374,7 +14374,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14383,7 +14383,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14395,7 +14395,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14403,7 +14403,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14411,7 +14411,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14429,7 +14429,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14437,7 +14437,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14445,7 +14445,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14455,9 +14455,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14469,7 +14469,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14477,7 +14477,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14485,7 +14485,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14503,7 +14503,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14511,7 +14511,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14519,7 +14519,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14528,7 +14528,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14540,7 +14540,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14548,7 +14548,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14556,7 +14556,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14574,7 +14574,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14582,7 +14582,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14590,7 +14590,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14601,11 +14601,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14617,7 +14617,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14625,7 +14625,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14633,7 +14633,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14651,7 +14651,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14659,7 +14659,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14667,7 +14667,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14676,7 +14676,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14688,7 +14688,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14696,7 +14696,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14704,7 +14704,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14722,7 +14722,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14730,7 +14730,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14738,7 +14738,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14748,9 +14748,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14762,7 +14762,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14770,7 +14770,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14778,7 +14778,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14796,7 +14796,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14804,7 +14804,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14812,7 +14812,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14821,7 +14821,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14833,7 +14833,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14841,7 +14841,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14849,7 +14849,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14867,7 +14867,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14875,7 +14875,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14883,7 +14883,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14897,11 +14897,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14913,7 +14913,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14921,7 +14921,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14929,7 +14929,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14947,7 +14947,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14955,7 +14955,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14963,7 +14963,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14972,7 +14972,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14984,7 +14984,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14992,7 +14992,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15000,7 +15000,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15018,7 +15018,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15026,7 +15026,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15034,7 +15034,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15044,9 +15044,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15058,7 +15058,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15066,7 +15066,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15074,7 +15074,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15092,7 +15092,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15100,7 +15100,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15108,7 +15108,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15117,7 +15117,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -15129,7 +15129,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15137,7 +15137,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15145,7 +15145,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15163,7 +15163,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15171,7 +15171,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15179,7 +15179,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15190,11 +15190,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15206,7 +15206,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15214,7 +15214,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15222,7 +15222,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15240,7 +15240,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15248,7 +15248,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15256,7 +15256,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15265,7 +15265,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -15277,7 +15277,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15285,7 +15285,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15293,7 +15293,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15311,7 +15311,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15319,7 +15319,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15327,7 +15327,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15337,9 +15337,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15351,7 +15351,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15359,7 +15359,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15367,7 +15367,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15385,7 +15385,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15393,7 +15393,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15401,7 +15401,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15410,7 +15410,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -15422,7 +15422,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15430,7 +15430,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15438,7 +15438,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15456,7 +15456,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15464,7 +15464,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15472,7 +15472,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15486,11 +15486,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15502,7 +15502,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15510,7 +15510,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15518,7 +15518,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15536,7 +15536,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15544,7 +15544,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15552,7 +15552,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15561,7 +15561,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -15573,7 +15573,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15581,7 +15581,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15589,7 +15589,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15607,7 +15607,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15615,7 +15615,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15623,7 +15623,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15633,9 +15633,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15647,7 +15647,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15655,7 +15655,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15663,7 +15663,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15681,7 +15681,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15689,7 +15689,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15697,7 +15697,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15706,7 +15706,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -15718,7 +15718,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15726,7 +15726,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15734,7 +15734,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15752,7 +15752,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15760,7 +15760,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15768,7 +15768,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15779,11 +15779,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15795,7 +15795,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15803,7 +15803,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15811,7 +15811,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15829,7 +15829,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15837,7 +15837,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15845,7 +15845,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15854,7 +15854,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -15866,7 +15866,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15874,7 +15874,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15882,7 +15882,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15900,7 +15900,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15908,7 +15908,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15916,7 +15916,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15926,9 +15926,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15940,7 +15940,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15948,7 +15948,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15956,7 +15956,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15974,7 +15974,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15982,7 +15982,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15990,7 +15990,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15999,7 +15999,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16011,7 +16011,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16019,7 +16019,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16027,7 +16027,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16045,7 +16045,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16053,7 +16053,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16061,7 +16061,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16092,16 +16092,16 @@ { double v = 1234567890.125; std::ios ios(0); - hexfloat(ios); + std::hexfloat(ios); // %a { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16113,7 +16113,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16121,7 +16121,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16129,7 +16129,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16147,7 +16147,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16155,7 +16155,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16163,7 +16163,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16172,7 +16172,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16184,7 +16184,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16192,7 +16192,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16200,7 +16200,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16218,7 +16218,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16226,7 +16226,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16234,7 +16234,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16244,9 +16244,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16258,7 +16258,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16266,7 +16266,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16274,7 +16274,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16292,7 +16292,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16300,7 +16300,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16308,7 +16308,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16317,7 +16317,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16329,7 +16329,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16337,7 +16337,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16345,7 +16345,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16363,7 +16363,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16371,7 +16371,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16379,7 +16379,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16390,11 +16390,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16406,7 +16406,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16414,7 +16414,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16422,7 +16422,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16440,7 +16440,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16448,7 +16448,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16456,7 +16456,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16465,7 +16465,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16477,7 +16477,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16485,7 +16485,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16493,7 +16493,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16511,7 +16511,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16519,7 +16519,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16527,7 +16527,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16537,9 +16537,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16551,7 +16551,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16559,7 +16559,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16567,7 +16567,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16585,7 +16585,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16593,7 +16593,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16601,7 +16601,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16610,7 +16610,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16622,7 +16622,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16630,7 +16630,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16638,7 +16638,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16656,7 +16656,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16664,7 +16664,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16672,7 +16672,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16686,11 +16686,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16702,7 +16702,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16710,7 +16710,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16718,7 +16718,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16736,7 +16736,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16744,7 +16744,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16752,7 +16752,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16761,7 +16761,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16773,7 +16773,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16781,7 +16781,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16789,7 +16789,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16807,7 +16807,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16815,7 +16815,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16823,7 +16823,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16833,9 +16833,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16847,7 +16847,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16855,7 +16855,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16863,7 +16863,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16881,7 +16881,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16889,7 +16889,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16897,7 +16897,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16906,7 +16906,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16918,7 +16918,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16926,7 +16926,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16934,7 +16934,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16952,7 +16952,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16960,7 +16960,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16968,7 +16968,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16979,11 +16979,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16995,7 +16995,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17003,7 +17003,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17011,7 +17011,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17029,7 +17029,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17037,7 +17037,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17045,7 +17045,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17054,7 +17054,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -17066,7 +17066,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17074,7 +17074,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17082,7 +17082,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17100,7 +17100,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17108,7 +17108,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17116,7 +17116,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17126,9 +17126,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -17140,7 +17140,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17148,7 +17148,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17156,7 +17156,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17174,7 +17174,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17182,7 +17182,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17190,7 +17190,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17199,7 +17199,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -17211,7 +17211,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17219,7 +17219,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17227,7 +17227,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17245,7 +17245,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17253,7 +17253,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17261,7 +17261,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17281,11 +17281,11 @@ } ios.precision(60); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -17297,7 +17297,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17305,7 +17305,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17313,7 +17313,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17331,7 +17331,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17339,7 +17339,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17347,7 +17347,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17356,7 +17356,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -17368,7 +17368,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17376,7 +17376,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17384,7 +17384,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17402,7 +17402,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17410,7 +17410,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17418,7 +17418,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17428,9 +17428,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -17442,7 +17442,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17450,7 +17450,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17458,7 +17458,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17476,7 +17476,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17484,7 +17484,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17492,7 +17492,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17501,7 +17501,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -17513,7 +17513,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17521,7 +17521,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17529,7 +17529,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17547,7 +17547,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17555,7 +17555,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17563,7 +17563,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17574,11 +17574,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -17590,7 +17590,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17598,7 +17598,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17606,7 +17606,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17624,7 +17624,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17632,7 +17632,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17640,7 +17640,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17649,7 +17649,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -17661,7 +17661,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17669,7 +17669,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17677,7 +17677,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17695,7 +17695,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17703,7 +17703,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17711,7 +17711,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17721,9 +17721,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -17735,7 +17735,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17743,7 +17743,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17751,7 +17751,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17769,7 +17769,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17777,7 +17777,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17785,7 +17785,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17794,7 +17794,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -17806,7 +17806,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17814,7 +17814,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17822,7 +17822,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17840,7 +17840,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17848,7 +17848,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17856,7 +17856,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long.pass.cpp @@ -85,7 +85,7 @@ } { std::ios ios(0); - showpos(ios); + std::showpos(ios); long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -94,7 +94,7 @@ } { std::ios ios(0); - oct(ios); + std::oct(ios); long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -103,8 +103,8 @@ } { std::ios ios(0); - oct(ios); - showbase(ios); + std::oct(ios); + std::showbase(ios); long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -113,7 +113,7 @@ } { std::ios ios(0); - hex(ios); + std::hex(ios); long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -122,8 +122,8 @@ } { std::ios ios(0); - hex(ios); - showbase(ios); + std::hex(ios); + std::showbase(ios); long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -132,9 +132,9 @@ } { std::ios ios(0); - hex(ios); - showbase(ios); - uppercase(ios); + std::hex(ios); + std::showbase(ios); + std::uppercase(ios); long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -144,9 +144,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - uppercase(ios); + std::hex(ios); + std::showbase(ios); + std::uppercase(ios); long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -156,8 +156,8 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); + std::hex(ios); + std::showbase(ios); long v = 2147483647; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -167,7 +167,7 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); + std::oct(ios); long v = 0123467; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -177,8 +177,8 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); + std::oct(ios); + std::showbase(ios); long v = 0123467; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -188,9 +188,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); - right(ios); + std::oct(ios); + std::showbase(ios); + std::right(ios); ios.width(15); long v = 0123467; char str[50]; @@ -201,9 +201,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); - left(ios); + std::oct(ios); + std::showbase(ios); + std::left(ios); ios.width(15); long v = 0123467; char str[50]; @@ -214,9 +214,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); - internal(ios); + std::oct(ios); + std::showbase(ios); + std::internal(ios); ios.width(15); long v = 0123467; char str[50]; @@ -228,9 +228,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - right(ios); + std::hex(ios); + std::showbase(ios); + std::right(ios); ios.width(15); long v = 2147483647; char str[50]; @@ -241,9 +241,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - left(ios); + std::hex(ios); + std::showbase(ios); + std::left(ios); ios.width(15); long v = 2147483647; char str[50]; @@ -254,9 +254,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - internal(ios); + std::hex(ios); + std::showbase(ios); + std::internal(ios); ios.width(15); long v = 2147483647; char str[50]; @@ -268,9 +268,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - showpos(ios); + std::showpos(ios); long v = 1000; - right(ios); + std::right(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -281,9 +281,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - showpos(ios); + std::showpos(ios); long v = 1000; - left(ios); + std::left(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -294,9 +294,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - showpos(ios); + std::showpos(ios); long v = 1000; - internal(ios); + std::internal(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -308,8 +308,8 @@ std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); long v = -1000; - right(ios); - showpos(ios); + std::right(ios); + std::showpos(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -321,7 +321,7 @@ std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); long v = -1000; - left(ios); + std::left(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -333,7 +333,7 @@ std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); long v = -1000; - internal(ios); + std::internal(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_double.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_double.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_double.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_double.pass.cpp @@ -58,11 +58,11 @@ { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -74,7 +74,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -82,7 +82,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -90,7 +90,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -108,7 +108,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -116,7 +116,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -124,7 +124,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -133,7 +133,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -145,7 +145,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -153,7 +153,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -161,7 +161,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -179,7 +179,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -187,7 +187,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -195,7 +195,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -205,9 +205,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -219,7 +219,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -227,7 +227,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -235,7 +235,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -253,7 +253,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -261,7 +261,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -269,7 +269,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -278,7 +278,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -290,7 +290,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -298,7 +298,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -306,7 +306,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -324,7 +324,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -332,7 +332,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -340,7 +340,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -351,11 +351,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -367,7 +367,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -375,7 +375,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -383,7 +383,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -401,7 +401,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -409,7 +409,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -417,7 +417,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -426,7 +426,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -438,7 +438,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -446,7 +446,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -454,7 +454,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -472,7 +472,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -480,7 +480,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -488,7 +488,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -498,9 +498,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -512,7 +512,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -520,7 +520,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -528,7 +528,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -546,7 +546,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -554,7 +554,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -562,7 +562,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -571,7 +571,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -583,7 +583,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -591,7 +591,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -599,7 +599,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -617,7 +617,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -625,7 +625,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -633,7 +633,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -647,11 +647,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -663,7 +663,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -671,7 +671,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -679,7 +679,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -697,7 +697,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -705,7 +705,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -713,7 +713,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -722,7 +722,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -734,7 +734,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -742,7 +742,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -750,7 +750,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -768,7 +768,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -776,7 +776,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -784,7 +784,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -794,9 +794,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -808,7 +808,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -816,7 +816,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -824,7 +824,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -842,7 +842,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -850,7 +850,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -858,7 +858,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -867,7 +867,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -879,7 +879,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -887,7 +887,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -895,7 +895,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -913,7 +913,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -921,7 +921,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -929,7 +929,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -940,11 +940,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -956,7 +956,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -964,7 +964,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -972,7 +972,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -990,7 +990,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -998,7 +998,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1006,7 +1006,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1015,7 +1015,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1027,7 +1027,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1035,7 +1035,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1043,7 +1043,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1061,7 +1061,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1069,7 +1069,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1077,7 +1077,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1087,9 +1087,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1101,7 +1101,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1109,7 +1109,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1117,7 +1117,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1135,7 +1135,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1143,7 +1143,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1151,7 +1151,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1160,7 +1160,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1172,7 +1172,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1180,7 +1180,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1188,7 +1188,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1206,7 +1206,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1214,7 +1214,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1222,7 +1222,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1236,11 +1236,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1252,7 +1252,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1260,7 +1260,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1268,7 +1268,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1286,7 +1286,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1294,7 +1294,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1302,7 +1302,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1311,7 +1311,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1323,7 +1323,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1331,7 +1331,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1339,7 +1339,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1357,7 +1357,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1365,7 +1365,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1373,7 +1373,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1383,9 +1383,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1397,7 +1397,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1405,7 +1405,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1413,7 +1413,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1431,7 +1431,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1439,7 +1439,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1447,7 +1447,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1456,7 +1456,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1468,7 +1468,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1476,7 +1476,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1484,7 +1484,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1502,7 +1502,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1510,7 +1510,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1518,7 +1518,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1529,11 +1529,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1545,7 +1545,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1553,7 +1553,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1561,7 +1561,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1579,7 +1579,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1587,7 +1587,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1595,7 +1595,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1604,7 +1604,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1616,7 +1616,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1624,7 +1624,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1632,7 +1632,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1650,7 +1650,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1658,7 +1658,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1666,7 +1666,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1676,9 +1676,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1690,7 +1690,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1698,7 +1698,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1706,7 +1706,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1724,7 +1724,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1732,7 +1732,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1740,7 +1740,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1749,7 +1749,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1761,7 +1761,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1769,7 +1769,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1777,7 +1777,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1795,7 +1795,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1803,7 +1803,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1811,7 +1811,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1825,11 +1825,11 @@ } ios.precision(16); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1841,7 +1841,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1849,7 +1849,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1857,7 +1857,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1875,7 +1875,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1883,7 +1883,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1891,7 +1891,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1900,7 +1900,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -1912,7 +1912,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1920,7 +1920,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1928,7 +1928,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1946,7 +1946,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1954,7 +1954,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1962,7 +1962,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1972,9 +1972,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -1986,7 +1986,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -1994,7 +1994,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2002,7 +2002,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2020,7 +2020,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2028,7 +2028,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2036,7 +2036,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2045,7 +2045,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2057,7 +2057,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2065,7 +2065,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2073,7 +2073,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2091,7 +2091,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2099,7 +2099,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2107,7 +2107,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2118,11 +2118,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -2134,7 +2134,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2142,7 +2142,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2150,7 +2150,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2168,7 +2168,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2176,7 +2176,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2184,7 +2184,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2193,7 +2193,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2205,7 +2205,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2213,7 +2213,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2221,7 +2221,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2239,7 +2239,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2247,7 +2247,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2255,7 +2255,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2265,9 +2265,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -2279,7 +2279,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2287,7 +2287,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2295,7 +2295,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2313,7 +2313,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2321,7 +2321,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2329,7 +2329,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2338,7 +2338,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2350,7 +2350,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2358,7 +2358,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2366,7 +2366,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2384,7 +2384,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2392,7 +2392,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2400,7 +2400,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2414,11 +2414,11 @@ } ios.precision(60); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -2430,7 +2430,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2438,7 +2438,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2446,7 +2446,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2464,7 +2464,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2472,7 +2472,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2480,7 +2480,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2489,7 +2489,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2501,7 +2501,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2509,7 +2509,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2517,7 +2517,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2535,7 +2535,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2543,7 +2543,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2551,7 +2551,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2561,9 +2561,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -2575,7 +2575,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2583,7 +2583,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2591,7 +2591,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2609,7 +2609,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2617,7 +2617,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2625,7 +2625,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2634,7 +2634,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2646,7 +2646,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2654,7 +2654,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2662,7 +2662,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2680,7 +2680,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2688,7 +2688,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2696,7 +2696,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2707,11 +2707,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -2723,7 +2723,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2731,7 +2731,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2739,7 +2739,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2757,7 +2757,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2765,7 +2765,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2773,7 +2773,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2782,7 +2782,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2794,7 +2794,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2802,7 +2802,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2810,7 +2810,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2828,7 +2828,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2836,7 +2836,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2844,7 +2844,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2854,9 +2854,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -2868,7 +2868,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2876,7 +2876,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2884,7 +2884,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2902,7 +2902,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2910,7 +2910,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2918,7 +2918,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2927,7 +2927,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -2939,7 +2939,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2947,7 +2947,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2955,7 +2955,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2973,7 +2973,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2981,7 +2981,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -2989,7 +2989,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3018,11 +3018,11 @@ { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3034,7 +3034,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3042,7 +3042,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3050,7 +3050,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3068,7 +3068,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3076,7 +3076,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3084,7 +3084,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3093,7 +3093,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3105,7 +3105,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3113,7 +3113,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3121,7 +3121,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3139,7 +3139,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3147,7 +3147,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3155,7 +3155,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3165,9 +3165,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3179,7 +3179,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3187,7 +3187,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3195,7 +3195,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3213,7 +3213,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3221,7 +3221,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3229,7 +3229,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3238,7 +3238,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3250,7 +3250,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3258,7 +3258,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3266,7 +3266,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3284,7 +3284,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3292,7 +3292,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3300,7 +3300,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3311,11 +3311,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3327,7 +3327,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3335,7 +3335,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3343,7 +3343,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3361,7 +3361,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3369,7 +3369,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3377,7 +3377,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3386,7 +3386,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3398,7 +3398,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3406,7 +3406,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3414,7 +3414,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3432,7 +3432,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3440,7 +3440,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3448,7 +3448,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3458,9 +3458,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3472,7 +3472,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3480,7 +3480,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3488,7 +3488,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3506,7 +3506,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3514,7 +3514,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3522,7 +3522,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3531,7 +3531,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3543,7 +3543,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3551,7 +3551,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3559,7 +3559,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3577,7 +3577,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3585,7 +3585,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3593,7 +3593,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3607,11 +3607,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3623,7 +3623,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3631,7 +3631,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3639,7 +3639,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3657,7 +3657,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3665,7 +3665,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3673,7 +3673,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3682,7 +3682,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3694,7 +3694,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3702,7 +3702,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3710,7 +3710,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3728,7 +3728,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3736,7 +3736,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3744,7 +3744,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3754,9 +3754,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3768,7 +3768,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3776,7 +3776,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3784,7 +3784,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3802,7 +3802,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3810,7 +3810,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3818,7 +3818,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3827,7 +3827,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3839,7 +3839,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3847,7 +3847,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3855,7 +3855,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3873,7 +3873,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3881,7 +3881,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3889,7 +3889,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3900,11 +3900,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -3916,7 +3916,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3924,7 +3924,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3932,7 +3932,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3950,7 +3950,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3958,7 +3958,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3966,7 +3966,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3975,7 +3975,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -3987,7 +3987,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -3995,7 +3995,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4003,7 +4003,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4021,7 +4021,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4029,7 +4029,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4037,7 +4037,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4047,9 +4047,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4061,7 +4061,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4069,7 +4069,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4077,7 +4077,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4095,7 +4095,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4103,7 +4103,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4111,7 +4111,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4120,7 +4120,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -4132,7 +4132,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4140,7 +4140,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4148,7 +4148,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4166,7 +4166,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4174,7 +4174,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4182,7 +4182,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4196,11 +4196,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4212,7 +4212,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4220,7 +4220,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4228,7 +4228,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4246,7 +4246,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4254,7 +4254,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4262,7 +4262,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4271,7 +4271,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -4283,7 +4283,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4291,7 +4291,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4299,7 +4299,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4317,7 +4317,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4325,7 +4325,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4333,7 +4333,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4343,9 +4343,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4357,7 +4357,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4365,7 +4365,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4373,7 +4373,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4391,7 +4391,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4399,7 +4399,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4407,7 +4407,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4416,7 +4416,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -4428,7 +4428,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4436,7 +4436,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4444,7 +4444,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4462,7 +4462,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4470,7 +4470,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4478,7 +4478,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4489,11 +4489,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4505,7 +4505,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4513,7 +4513,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4521,7 +4521,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4539,7 +4539,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4547,7 +4547,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4555,7 +4555,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4564,7 +4564,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -4576,7 +4576,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4584,7 +4584,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4592,7 +4592,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4610,7 +4610,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4618,7 +4618,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4626,7 +4626,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4636,9 +4636,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4650,7 +4650,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4658,7 +4658,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4666,7 +4666,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4684,7 +4684,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4692,7 +4692,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4700,7 +4700,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4709,7 +4709,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -4721,7 +4721,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4729,7 +4729,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4737,7 +4737,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4755,7 +4755,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4763,7 +4763,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4771,7 +4771,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4785,11 +4785,11 @@ } ios.precision(16); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4801,7 +4801,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4809,7 +4809,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4817,7 +4817,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4835,7 +4835,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4843,7 +4843,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4851,7 +4851,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4860,7 +4860,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -4872,7 +4872,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4880,7 +4880,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4888,7 +4888,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4906,7 +4906,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4914,7 +4914,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4922,7 +4922,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4932,9 +4932,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -4946,7 +4946,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4954,7 +4954,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4962,7 +4962,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4980,7 +4980,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4988,7 +4988,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -4996,7 +4996,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5005,7 +5005,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5017,7 +5017,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5025,7 +5025,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5033,7 +5033,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5051,7 +5051,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5059,7 +5059,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5067,7 +5067,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5078,11 +5078,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5094,7 +5094,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5102,7 +5102,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5110,7 +5110,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5128,7 +5128,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5136,7 +5136,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5144,7 +5144,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5153,7 +5153,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5165,7 +5165,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5173,7 +5173,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5181,7 +5181,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5199,7 +5199,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5207,7 +5207,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5215,7 +5215,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5225,9 +5225,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5239,7 +5239,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5247,7 +5247,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5255,7 +5255,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5273,7 +5273,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5281,7 +5281,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5289,7 +5289,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5298,7 +5298,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5310,7 +5310,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5318,7 +5318,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5326,7 +5326,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5344,7 +5344,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5352,7 +5352,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5360,7 +5360,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5374,11 +5374,11 @@ } ios.precision(60); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5390,7 +5390,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5398,7 +5398,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5406,7 +5406,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5424,7 +5424,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5432,7 +5432,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5440,7 +5440,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5449,7 +5449,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5461,7 +5461,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5469,7 +5469,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5477,7 +5477,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5495,7 +5495,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5503,7 +5503,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5511,7 +5511,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5521,9 +5521,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5535,7 +5535,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5543,7 +5543,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5551,7 +5551,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5569,7 +5569,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5577,7 +5577,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5585,7 +5585,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5594,7 +5594,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5606,7 +5606,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5614,7 +5614,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5622,7 +5622,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5640,7 +5640,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5648,7 +5648,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5656,7 +5656,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5667,11 +5667,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5683,7 +5683,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5691,7 +5691,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5699,7 +5699,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5717,7 +5717,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5725,7 +5725,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5733,7 +5733,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5742,7 +5742,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5754,7 +5754,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5762,7 +5762,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5770,7 +5770,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5788,7 +5788,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5796,7 +5796,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5804,7 +5804,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5814,9 +5814,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5828,7 +5828,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5836,7 +5836,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5844,7 +5844,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5862,7 +5862,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5870,7 +5870,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5878,7 +5878,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5887,7 +5887,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -5899,7 +5899,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5907,7 +5907,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5915,7 +5915,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5933,7 +5933,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5941,7 +5941,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5949,7 +5949,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -5978,11 +5978,11 @@ { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -5994,7 +5994,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6002,7 +6002,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6010,7 +6010,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6028,7 +6028,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6036,7 +6036,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6044,7 +6044,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6053,7 +6053,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6065,7 +6065,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6073,7 +6073,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6081,7 +6081,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6099,7 +6099,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6107,7 +6107,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6115,7 +6115,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6125,9 +6125,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -6139,7 +6139,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6147,7 +6147,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6155,7 +6155,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6173,7 +6173,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6181,7 +6181,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6189,7 +6189,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6198,7 +6198,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6210,7 +6210,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6218,7 +6218,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6226,7 +6226,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6244,7 +6244,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6252,7 +6252,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6260,7 +6260,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6271,11 +6271,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -6287,7 +6287,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6295,7 +6295,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6303,7 +6303,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6321,7 +6321,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6329,7 +6329,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6337,7 +6337,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6346,7 +6346,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6358,7 +6358,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6366,7 +6366,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6374,7 +6374,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6392,7 +6392,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6400,7 +6400,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6408,7 +6408,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6418,9 +6418,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -6432,7 +6432,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6440,7 +6440,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6448,7 +6448,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6466,7 +6466,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6474,7 +6474,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6482,7 +6482,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6491,7 +6491,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6503,7 +6503,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6511,7 +6511,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6519,7 +6519,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6537,7 +6537,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6545,7 +6545,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6553,7 +6553,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6567,11 +6567,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -6583,7 +6583,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6591,7 +6591,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6599,7 +6599,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6617,7 +6617,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6625,7 +6625,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6633,7 +6633,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6642,7 +6642,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6654,7 +6654,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6662,7 +6662,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6670,7 +6670,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6688,7 +6688,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6696,7 +6696,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6704,7 +6704,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6714,9 +6714,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -6728,7 +6728,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6736,7 +6736,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6744,7 +6744,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6762,7 +6762,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6770,7 +6770,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6778,7 +6778,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6787,7 +6787,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6799,7 +6799,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6807,7 +6807,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6815,7 +6815,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6833,7 +6833,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6841,7 +6841,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6849,7 +6849,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6860,11 +6860,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -6876,7 +6876,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6884,7 +6884,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6892,7 +6892,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6910,7 +6910,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6918,7 +6918,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6926,7 +6926,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6935,7 +6935,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -6947,7 +6947,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6955,7 +6955,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6963,7 +6963,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6981,7 +6981,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6989,7 +6989,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -6997,7 +6997,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7007,9 +7007,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7021,7 +7021,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7029,7 +7029,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7037,7 +7037,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7055,7 +7055,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7063,7 +7063,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7071,7 +7071,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7080,7 +7080,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7092,7 +7092,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7100,7 +7100,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7108,7 +7108,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7126,7 +7126,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7134,7 +7134,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7142,7 +7142,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7156,11 +7156,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7172,7 +7172,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7180,7 +7180,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7188,7 +7188,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7206,7 +7206,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7214,7 +7214,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7222,7 +7222,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7231,7 +7231,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7243,7 +7243,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7251,7 +7251,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7259,7 +7259,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7277,7 +7277,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7285,7 +7285,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7293,7 +7293,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7303,9 +7303,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7317,7 +7317,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7325,7 +7325,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7333,7 +7333,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7351,7 +7351,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7359,7 +7359,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7367,7 +7367,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7376,7 +7376,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7388,7 +7388,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7396,7 +7396,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7404,7 +7404,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7422,7 +7422,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7430,7 +7430,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7438,7 +7438,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7449,11 +7449,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7465,7 +7465,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7473,7 +7473,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7481,7 +7481,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7499,7 +7499,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7507,7 +7507,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7515,7 +7515,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7524,7 +7524,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7536,7 +7536,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7544,7 +7544,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7552,7 +7552,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7570,7 +7570,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7578,7 +7578,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7586,7 +7586,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7596,9 +7596,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7610,7 +7610,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7618,7 +7618,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7626,7 +7626,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7644,7 +7644,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7652,7 +7652,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7660,7 +7660,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7669,7 +7669,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7681,7 +7681,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7689,7 +7689,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7697,7 +7697,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7715,7 +7715,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7723,7 +7723,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7731,7 +7731,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7745,11 +7745,11 @@ } ios.precision(16); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7761,7 +7761,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7769,7 +7769,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7777,7 +7777,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7795,7 +7795,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7803,7 +7803,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7811,7 +7811,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7820,7 +7820,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7832,7 +7832,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7840,7 +7840,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7848,7 +7848,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7866,7 +7866,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7874,7 +7874,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7882,7 +7882,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7892,9 +7892,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -7906,7 +7906,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7914,7 +7914,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7922,7 +7922,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7940,7 +7940,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7948,7 +7948,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7956,7 +7956,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7965,7 +7965,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -7977,7 +7977,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7985,7 +7985,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -7993,7 +7993,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8011,7 +8011,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8019,7 +8019,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8027,7 +8027,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8038,11 +8038,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8054,7 +8054,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8062,7 +8062,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8070,7 +8070,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8088,7 +8088,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8096,7 +8096,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8104,7 +8104,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8113,7 +8113,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -8125,7 +8125,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8133,7 +8133,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8141,7 +8141,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8159,7 +8159,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8167,7 +8167,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8175,7 +8175,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8185,9 +8185,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8199,7 +8199,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8207,7 +8207,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8215,7 +8215,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8233,7 +8233,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8241,7 +8241,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8249,7 +8249,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8258,7 +8258,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -8270,7 +8270,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8278,7 +8278,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8286,7 +8286,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8304,7 +8304,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8312,7 +8312,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8320,7 +8320,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8334,11 +8334,11 @@ } ios.precision(60); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8350,7 +8350,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8358,7 +8358,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8366,7 +8366,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8384,7 +8384,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8392,7 +8392,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8400,7 +8400,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8409,7 +8409,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -8421,7 +8421,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8429,7 +8429,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8437,7 +8437,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8455,7 +8455,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8463,7 +8463,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8471,7 +8471,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8481,9 +8481,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8495,7 +8495,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8503,7 +8503,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8511,7 +8511,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8529,7 +8529,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8537,7 +8537,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8545,7 +8545,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8554,7 +8554,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -8566,7 +8566,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8574,7 +8574,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8582,7 +8582,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8600,7 +8600,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8608,7 +8608,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8616,7 +8616,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8627,11 +8627,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8643,7 +8643,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8651,7 +8651,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8659,7 +8659,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8677,7 +8677,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8685,7 +8685,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8693,7 +8693,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8702,7 +8702,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -8714,7 +8714,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8722,7 +8722,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8730,7 +8730,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8748,7 +8748,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8756,7 +8756,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8764,7 +8764,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8774,9 +8774,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8788,7 +8788,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8796,7 +8796,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8804,7 +8804,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8822,7 +8822,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8830,7 +8830,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8838,7 +8838,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8847,7 +8847,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -8859,7 +8859,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8867,7 +8867,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8875,7 +8875,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8893,7 +8893,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8901,7 +8901,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8909,7 +8909,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8938,11 +8938,11 @@ { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -8954,7 +8954,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8962,7 +8962,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8970,7 +8970,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8988,7 +8988,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -8996,7 +8996,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9004,7 +9004,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9013,7 +9013,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9025,7 +9025,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9033,7 +9033,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9041,7 +9041,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9059,7 +9059,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9067,7 +9067,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9075,7 +9075,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9085,9 +9085,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9099,7 +9099,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9107,7 +9107,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9115,7 +9115,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9133,7 +9133,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9141,7 +9141,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9149,7 +9149,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9158,7 +9158,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9170,7 +9170,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9178,7 +9178,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9186,7 +9186,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9204,7 +9204,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9212,7 +9212,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9220,7 +9220,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9231,11 +9231,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9247,7 +9247,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9255,7 +9255,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9263,7 +9263,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9281,7 +9281,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9289,7 +9289,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9297,7 +9297,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9306,7 +9306,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9318,7 +9318,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9326,7 +9326,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9334,7 +9334,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9352,7 +9352,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9360,7 +9360,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9368,7 +9368,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9378,9 +9378,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9392,7 +9392,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9400,7 +9400,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9408,7 +9408,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9426,7 +9426,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9434,7 +9434,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9442,7 +9442,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9451,7 +9451,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9463,7 +9463,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9471,7 +9471,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9479,7 +9479,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9497,7 +9497,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9505,7 +9505,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9513,7 +9513,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9527,11 +9527,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9543,7 +9543,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9551,7 +9551,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9559,7 +9559,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9577,7 +9577,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9585,7 +9585,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9593,7 +9593,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9602,7 +9602,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9614,7 +9614,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9622,7 +9622,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9630,7 +9630,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9648,7 +9648,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9656,7 +9656,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9664,7 +9664,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9674,9 +9674,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9688,7 +9688,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9696,7 +9696,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9704,7 +9704,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9722,7 +9722,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9730,7 +9730,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9738,7 +9738,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9747,7 +9747,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9759,7 +9759,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9767,7 +9767,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9775,7 +9775,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9793,7 +9793,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9801,7 +9801,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9809,7 +9809,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9820,11 +9820,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9836,7 +9836,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9844,7 +9844,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9852,7 +9852,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9870,7 +9870,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9878,7 +9878,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9886,7 +9886,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9895,7 +9895,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -9907,7 +9907,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9915,7 +9915,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9923,7 +9923,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9941,7 +9941,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9949,7 +9949,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9957,7 +9957,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9967,9 +9967,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -9981,7 +9981,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9989,7 +9989,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -9997,7 +9997,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10015,7 +10015,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10023,7 +10023,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10031,7 +10031,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10040,7 +10040,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10052,7 +10052,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10060,7 +10060,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10068,7 +10068,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10086,7 +10086,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10094,7 +10094,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10102,7 +10102,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10116,11 +10116,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -10132,7 +10132,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10140,7 +10140,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10148,7 +10148,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10166,7 +10166,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10174,7 +10174,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10182,7 +10182,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10191,7 +10191,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10203,7 +10203,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10211,7 +10211,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10219,7 +10219,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10237,7 +10237,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10245,7 +10245,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10253,7 +10253,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10263,9 +10263,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -10277,7 +10277,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10285,7 +10285,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10293,7 +10293,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10311,7 +10311,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10319,7 +10319,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10327,7 +10327,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10336,7 +10336,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10348,7 +10348,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10356,7 +10356,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10364,7 +10364,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10382,7 +10382,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10390,7 +10390,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10398,7 +10398,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10409,11 +10409,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -10425,7 +10425,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10433,7 +10433,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10441,7 +10441,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10459,7 +10459,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10467,7 +10467,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10475,7 +10475,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10484,7 +10484,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10496,7 +10496,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10504,7 +10504,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10512,7 +10512,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10530,7 +10530,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10538,7 +10538,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10546,7 +10546,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10556,9 +10556,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -10570,7 +10570,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10578,7 +10578,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10586,7 +10586,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10604,7 +10604,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10612,7 +10612,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10620,7 +10620,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10629,7 +10629,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10641,7 +10641,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10649,7 +10649,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10657,7 +10657,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10675,7 +10675,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10683,7 +10683,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10691,7 +10691,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10731,11 +10731,11 @@ { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -10747,7 +10747,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10755,7 +10755,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10763,7 +10763,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10781,7 +10781,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10789,7 +10789,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10797,7 +10797,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10806,7 +10806,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10818,7 +10818,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10826,7 +10826,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10834,7 +10834,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10852,7 +10852,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10860,7 +10860,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10868,7 +10868,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10878,9 +10878,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -10892,7 +10892,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10900,7 +10900,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10908,7 +10908,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10926,7 +10926,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10934,7 +10934,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10942,7 +10942,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10951,7 +10951,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -10963,7 +10963,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10971,7 +10971,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10979,7 +10979,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -10997,7 +10997,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11005,7 +11005,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11013,7 +11013,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11024,11 +11024,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11040,7 +11040,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11048,7 +11048,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11056,7 +11056,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11074,7 +11074,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11082,7 +11082,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11090,7 +11090,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11099,7 +11099,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -11111,7 +11111,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11119,7 +11119,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11127,7 +11127,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11145,7 +11145,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11153,7 +11153,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11161,7 +11161,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11171,9 +11171,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11185,7 +11185,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11193,7 +11193,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11201,7 +11201,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11219,7 +11219,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11227,7 +11227,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11235,7 +11235,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11244,7 +11244,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -11256,7 +11256,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11264,7 +11264,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11272,7 +11272,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11290,7 +11290,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11298,7 +11298,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11306,7 +11306,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11339,16 +11339,16 @@ { long double v = +0.; std::ios ios(0); - fixed(ios); + std::fixed(ios); // %f { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11360,7 +11360,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11368,7 +11368,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11376,7 +11376,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11394,7 +11394,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11402,7 +11402,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11410,7 +11410,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11419,7 +11419,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -11431,7 +11431,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11439,7 +11439,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11447,7 +11447,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11465,7 +11465,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11473,7 +11473,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11481,7 +11481,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11491,9 +11491,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11505,7 +11505,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11513,7 +11513,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11521,7 +11521,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11539,7 +11539,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11547,7 +11547,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11555,7 +11555,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11564,7 +11564,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -11576,7 +11576,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11584,7 +11584,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11592,7 +11592,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11610,7 +11610,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11618,7 +11618,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11626,7 +11626,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11637,11 +11637,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11653,7 +11653,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11661,7 +11661,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11669,7 +11669,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11687,7 +11687,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11695,7 +11695,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11703,7 +11703,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11712,7 +11712,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -11724,7 +11724,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11732,7 +11732,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11740,7 +11740,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11758,7 +11758,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11766,7 +11766,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11774,7 +11774,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11784,9 +11784,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11798,7 +11798,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11806,7 +11806,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11814,7 +11814,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11832,7 +11832,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11840,7 +11840,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11848,7 +11848,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11857,7 +11857,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -11869,7 +11869,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11877,7 +11877,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11885,7 +11885,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11903,7 +11903,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11911,7 +11911,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11919,7 +11919,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11933,11 +11933,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -11949,7 +11949,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11957,7 +11957,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11965,7 +11965,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11983,7 +11983,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11991,7 +11991,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -11999,7 +11999,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12008,7 +12008,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -12020,7 +12020,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12028,7 +12028,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12036,7 +12036,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12054,7 +12054,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12062,7 +12062,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12070,7 +12070,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12080,9 +12080,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12094,7 +12094,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12102,7 +12102,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12110,7 +12110,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12128,7 +12128,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12136,7 +12136,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12144,7 +12144,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12153,7 +12153,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -12165,7 +12165,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12173,7 +12173,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12181,7 +12181,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12199,7 +12199,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12207,7 +12207,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12215,7 +12215,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12226,11 +12226,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12242,7 +12242,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12250,7 +12250,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12258,7 +12258,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12276,7 +12276,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12284,7 +12284,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12292,7 +12292,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12301,7 +12301,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -12313,7 +12313,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12321,7 +12321,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12329,7 +12329,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12347,7 +12347,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12355,7 +12355,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12363,7 +12363,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12373,9 +12373,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12387,7 +12387,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12395,7 +12395,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12403,7 +12403,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12421,7 +12421,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12429,7 +12429,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12437,7 +12437,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12446,7 +12446,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -12458,7 +12458,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12466,7 +12466,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12474,7 +12474,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12492,7 +12492,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12500,7 +12500,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12508,7 +12508,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12522,11 +12522,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12538,7 +12538,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12546,7 +12546,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12554,7 +12554,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12572,7 +12572,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12580,7 +12580,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12588,7 +12588,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12597,7 +12597,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -12609,7 +12609,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12617,7 +12617,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12625,7 +12625,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12643,7 +12643,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12651,7 +12651,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12659,7 +12659,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12669,9 +12669,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12683,7 +12683,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12691,7 +12691,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12699,7 +12699,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12717,7 +12717,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12725,7 +12725,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12733,7 +12733,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12742,7 +12742,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -12754,7 +12754,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12762,7 +12762,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12770,7 +12770,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12788,7 +12788,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12796,7 +12796,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12804,7 +12804,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12815,11 +12815,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12831,7 +12831,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12839,7 +12839,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12847,7 +12847,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12865,7 +12865,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12873,7 +12873,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12881,7 +12881,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12890,7 +12890,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -12902,7 +12902,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12910,7 +12910,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12918,7 +12918,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12936,7 +12936,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12944,7 +12944,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12952,7 +12952,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12962,9 +12962,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -12976,7 +12976,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12984,7 +12984,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -12992,7 +12992,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13010,7 +13010,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13018,7 +13018,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13026,7 +13026,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13035,7 +13035,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13047,7 +13047,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13055,7 +13055,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13063,7 +13063,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13081,7 +13081,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13089,7 +13089,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13097,7 +13097,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13111,11 +13111,11 @@ } ios.precision(16); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -13127,7 +13127,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13135,7 +13135,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13143,7 +13143,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13161,7 +13161,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13169,7 +13169,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13177,7 +13177,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13186,7 +13186,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13198,7 +13198,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13206,7 +13206,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13214,7 +13214,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13232,7 +13232,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13240,7 +13240,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13248,7 +13248,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13258,9 +13258,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -13272,7 +13272,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13280,7 +13280,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13288,7 +13288,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13306,7 +13306,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13314,7 +13314,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13322,7 +13322,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13331,7 +13331,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13343,7 +13343,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13351,7 +13351,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13359,7 +13359,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13377,7 +13377,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13385,7 +13385,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13393,7 +13393,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13404,11 +13404,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -13420,7 +13420,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13428,7 +13428,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13436,7 +13436,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13454,7 +13454,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13462,7 +13462,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13470,7 +13470,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13479,7 +13479,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13491,7 +13491,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13499,7 +13499,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13507,7 +13507,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13525,7 +13525,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13533,7 +13533,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13541,7 +13541,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13551,9 +13551,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -13565,7 +13565,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13573,7 +13573,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13581,7 +13581,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13599,7 +13599,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13607,7 +13607,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13615,7 +13615,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13624,7 +13624,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13636,7 +13636,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13644,7 +13644,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13652,7 +13652,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13670,7 +13670,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13678,7 +13678,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13686,7 +13686,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13700,11 +13700,11 @@ } ios.precision(60); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -13716,7 +13716,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13724,7 +13724,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13732,7 +13732,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13750,7 +13750,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13758,7 +13758,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13766,7 +13766,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13775,7 +13775,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13787,7 +13787,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13795,7 +13795,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13803,7 +13803,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13821,7 +13821,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13829,7 +13829,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13837,7 +13837,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13847,9 +13847,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -13861,7 +13861,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13869,7 +13869,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13877,7 +13877,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13895,7 +13895,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13903,7 +13903,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13911,7 +13911,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13920,7 +13920,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -13932,7 +13932,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13940,7 +13940,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13948,7 +13948,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13966,7 +13966,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13974,7 +13974,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13982,7 +13982,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -13993,11 +13993,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14009,7 +14009,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14017,7 +14017,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14025,7 +14025,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14043,7 +14043,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14051,7 +14051,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14059,7 +14059,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14068,7 +14068,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14080,7 +14080,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14088,7 +14088,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14096,7 +14096,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14114,7 +14114,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14122,7 +14122,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14130,7 +14130,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14140,9 +14140,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14154,7 +14154,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14162,7 +14162,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14170,7 +14170,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14188,7 +14188,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14196,7 +14196,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14204,7 +14204,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14213,7 +14213,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14225,7 +14225,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14233,7 +14233,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14241,7 +14241,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14259,7 +14259,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14267,7 +14267,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14275,7 +14275,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14300,16 +14300,16 @@ { long double v = -0.; std::ios ios(0); - fixed(ios); + std::fixed(ios); // %f { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14321,7 +14321,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14329,7 +14329,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14337,7 +14337,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14355,7 +14355,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14363,7 +14363,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14371,7 +14371,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14380,7 +14380,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14392,7 +14392,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14400,7 +14400,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14408,7 +14408,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14426,7 +14426,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14434,7 +14434,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14442,7 +14442,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14452,9 +14452,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14466,7 +14466,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14474,7 +14474,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14482,7 +14482,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14500,7 +14500,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14508,7 +14508,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14516,7 +14516,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14525,7 +14525,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14537,7 +14537,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14545,7 +14545,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14553,7 +14553,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14571,7 +14571,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14579,7 +14579,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14587,7 +14587,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14598,11 +14598,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14614,7 +14614,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14622,7 +14622,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14630,7 +14630,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14648,7 +14648,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14656,7 +14656,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14664,7 +14664,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14673,7 +14673,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14685,7 +14685,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14693,7 +14693,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14701,7 +14701,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14719,7 +14719,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14727,7 +14727,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14735,7 +14735,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14745,9 +14745,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14759,7 +14759,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14767,7 +14767,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14775,7 +14775,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14793,7 +14793,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14801,7 +14801,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14809,7 +14809,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14818,7 +14818,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14830,7 +14830,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14838,7 +14838,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14846,7 +14846,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14864,7 +14864,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14872,7 +14872,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14880,7 +14880,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14894,11 +14894,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -14910,7 +14910,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14918,7 +14918,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14926,7 +14926,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14944,7 +14944,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14952,7 +14952,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14960,7 +14960,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14969,7 +14969,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -14981,7 +14981,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14989,7 +14989,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -14997,7 +14997,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15015,7 +15015,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15023,7 +15023,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15031,7 +15031,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15041,9 +15041,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15055,7 +15055,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15063,7 +15063,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15071,7 +15071,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15089,7 +15089,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15097,7 +15097,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15105,7 +15105,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15114,7 +15114,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -15126,7 +15126,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15134,7 +15134,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15142,7 +15142,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15160,7 +15160,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15168,7 +15168,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15176,7 +15176,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15187,11 +15187,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15203,7 +15203,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15211,7 +15211,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15219,7 +15219,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15237,7 +15237,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15245,7 +15245,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15253,7 +15253,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15262,7 +15262,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -15274,7 +15274,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15282,7 +15282,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15290,7 +15290,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15308,7 +15308,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15316,7 +15316,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15324,7 +15324,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15334,9 +15334,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15348,7 +15348,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15356,7 +15356,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15364,7 +15364,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15382,7 +15382,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15390,7 +15390,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15398,7 +15398,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15407,7 +15407,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -15419,7 +15419,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15427,7 +15427,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15435,7 +15435,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15453,7 +15453,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15461,7 +15461,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15469,7 +15469,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15483,11 +15483,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15499,7 +15499,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15507,7 +15507,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15515,7 +15515,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15533,7 +15533,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15541,7 +15541,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15549,7 +15549,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15558,7 +15558,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -15570,7 +15570,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15578,7 +15578,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15586,7 +15586,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15604,7 +15604,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15612,7 +15612,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15620,7 +15620,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15630,9 +15630,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15644,7 +15644,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15652,7 +15652,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15660,7 +15660,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15678,7 +15678,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15686,7 +15686,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15694,7 +15694,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15703,7 +15703,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -15715,7 +15715,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15723,7 +15723,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15731,7 +15731,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15749,7 +15749,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15757,7 +15757,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15765,7 +15765,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15776,11 +15776,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15792,7 +15792,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15800,7 +15800,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15808,7 +15808,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15826,7 +15826,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15834,7 +15834,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15842,7 +15842,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15851,7 +15851,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -15863,7 +15863,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15871,7 +15871,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15879,7 +15879,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15897,7 +15897,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15905,7 +15905,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15913,7 +15913,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15923,9 +15923,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -15937,7 +15937,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15945,7 +15945,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15953,7 +15953,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15971,7 +15971,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15979,7 +15979,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15987,7 +15987,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -15996,7 +15996,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16008,7 +16008,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16016,7 +16016,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16024,7 +16024,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16042,7 +16042,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16050,7 +16050,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16058,7 +16058,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16072,11 +16072,11 @@ } ios.precision(16); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16088,7 +16088,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16096,7 +16096,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16104,7 +16104,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16122,7 +16122,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16130,7 +16130,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16138,7 +16138,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16147,7 +16147,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16159,7 +16159,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16167,7 +16167,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16175,7 +16175,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16193,7 +16193,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16201,7 +16201,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16209,7 +16209,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16219,9 +16219,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16233,7 +16233,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16241,7 +16241,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16249,7 +16249,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16267,7 +16267,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16275,7 +16275,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16283,7 +16283,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16292,7 +16292,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16304,7 +16304,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16312,7 +16312,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16320,7 +16320,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16338,7 +16338,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16346,7 +16346,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16354,7 +16354,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16365,11 +16365,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16381,7 +16381,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16389,7 +16389,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16397,7 +16397,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16415,7 +16415,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16423,7 +16423,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16431,7 +16431,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16440,7 +16440,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16452,7 +16452,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16460,7 +16460,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16468,7 +16468,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16486,7 +16486,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16494,7 +16494,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16502,7 +16502,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16512,9 +16512,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16526,7 +16526,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16534,7 +16534,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16542,7 +16542,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16560,7 +16560,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16568,7 +16568,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16576,7 +16576,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16585,7 +16585,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16597,7 +16597,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16605,7 +16605,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16613,7 +16613,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16631,7 +16631,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16639,7 +16639,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16647,7 +16647,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16661,11 +16661,11 @@ } ios.precision(60); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16677,7 +16677,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16685,7 +16685,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16693,7 +16693,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16711,7 +16711,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16719,7 +16719,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16727,7 +16727,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16736,7 +16736,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16748,7 +16748,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16756,7 +16756,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16764,7 +16764,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16782,7 +16782,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16790,7 +16790,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16798,7 +16798,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16808,9 +16808,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16822,7 +16822,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16830,7 +16830,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16838,7 +16838,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16856,7 +16856,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16864,7 +16864,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16872,7 +16872,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16881,7 +16881,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -16893,7 +16893,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16901,7 +16901,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16909,7 +16909,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16927,7 +16927,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16935,7 +16935,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16943,7 +16943,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16954,11 +16954,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -16970,7 +16970,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16978,7 +16978,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -16986,7 +16986,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17004,7 +17004,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17012,7 +17012,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17020,7 +17020,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17029,7 +17029,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -17041,7 +17041,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17049,7 +17049,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17057,7 +17057,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17075,7 +17075,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17083,7 +17083,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17091,7 +17091,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17101,9 +17101,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -17115,7 +17115,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17123,7 +17123,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17131,7 +17131,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17149,7 +17149,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17157,7 +17157,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17165,7 +17165,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17174,7 +17174,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -17186,7 +17186,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17194,7 +17194,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17202,7 +17202,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17220,7 +17220,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17228,7 +17228,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17236,7 +17236,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17261,16 +17261,16 @@ { long double v = 1234567890.125; std::ios ios(0); - fixed(ios); + std::fixed(ios); // %f { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -17282,7 +17282,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17290,7 +17290,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17298,7 +17298,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17316,7 +17316,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17324,7 +17324,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17332,7 +17332,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17341,7 +17341,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -17353,7 +17353,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17361,7 +17361,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17369,7 +17369,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17387,7 +17387,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17395,7 +17395,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17403,7 +17403,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17413,9 +17413,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -17427,7 +17427,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17435,7 +17435,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17443,7 +17443,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17461,7 +17461,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17469,7 +17469,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17477,7 +17477,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17486,7 +17486,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -17498,7 +17498,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17506,7 +17506,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17514,7 +17514,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17532,7 +17532,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17540,7 +17540,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17548,7 +17548,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17559,11 +17559,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -17575,7 +17575,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17583,7 +17583,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17591,7 +17591,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17609,7 +17609,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17617,7 +17617,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17625,7 +17625,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17634,7 +17634,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -17646,7 +17646,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17654,7 +17654,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17662,7 +17662,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17680,7 +17680,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17688,7 +17688,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17696,7 +17696,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17706,9 +17706,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -17720,7 +17720,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17728,7 +17728,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17736,7 +17736,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17754,7 +17754,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17762,7 +17762,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17770,7 +17770,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17779,7 +17779,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -17791,7 +17791,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17799,7 +17799,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17807,7 +17807,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17825,7 +17825,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17833,7 +17833,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17841,7 +17841,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17855,11 +17855,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -17871,7 +17871,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17879,7 +17879,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17887,7 +17887,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17905,7 +17905,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17913,7 +17913,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17921,7 +17921,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17930,7 +17930,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -17942,7 +17942,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17950,7 +17950,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17958,7 +17958,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17976,7 +17976,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17984,7 +17984,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -17992,7 +17992,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18002,9 +18002,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -18016,7 +18016,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18024,7 +18024,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18032,7 +18032,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18050,7 +18050,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18058,7 +18058,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18066,7 +18066,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18075,7 +18075,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -18087,7 +18087,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18095,7 +18095,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18103,7 +18103,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18121,7 +18121,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18129,7 +18129,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18137,7 +18137,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18148,11 +18148,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -18164,7 +18164,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18172,7 +18172,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18180,7 +18180,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18198,7 +18198,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18206,7 +18206,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18214,7 +18214,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18223,7 +18223,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -18235,7 +18235,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18243,7 +18243,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18251,7 +18251,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18269,7 +18269,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18277,7 +18277,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18285,7 +18285,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18295,9 +18295,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -18309,7 +18309,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18317,7 +18317,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18325,7 +18325,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18343,7 +18343,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18351,7 +18351,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18359,7 +18359,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18368,7 +18368,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -18380,7 +18380,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18388,7 +18388,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18396,7 +18396,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18414,7 +18414,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18422,7 +18422,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18430,7 +18430,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18444,11 +18444,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -18460,7 +18460,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18468,7 +18468,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18476,7 +18476,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18494,7 +18494,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18502,7 +18502,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18510,7 +18510,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18519,7 +18519,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -18531,7 +18531,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18539,7 +18539,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18547,7 +18547,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18565,7 +18565,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18573,7 +18573,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18581,7 +18581,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18591,9 +18591,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -18605,7 +18605,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18613,7 +18613,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18621,7 +18621,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18639,7 +18639,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18647,7 +18647,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18655,7 +18655,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18664,7 +18664,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -18676,7 +18676,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18684,7 +18684,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18692,7 +18692,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18710,7 +18710,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18718,7 +18718,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18726,7 +18726,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18737,11 +18737,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -18753,7 +18753,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18761,7 +18761,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18769,7 +18769,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18787,7 +18787,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18795,7 +18795,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18803,7 +18803,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18812,7 +18812,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -18824,7 +18824,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18832,7 +18832,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18840,7 +18840,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18858,7 +18858,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18866,7 +18866,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18874,7 +18874,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18884,9 +18884,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -18898,7 +18898,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18906,7 +18906,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18914,7 +18914,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18932,7 +18932,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18940,7 +18940,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18948,7 +18948,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18957,7 +18957,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -18969,7 +18969,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18977,7 +18977,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -18985,7 +18985,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19003,7 +19003,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19011,7 +19011,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19019,7 +19019,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19048,16 +19048,16 @@ { long double v = -0.; std::ios ios(0); - scientific(ios); + std::scientific(ios); // %e { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -19069,7 +19069,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19077,7 +19077,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19085,7 +19085,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19103,7 +19103,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19111,7 +19111,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19119,7 +19119,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19128,7 +19128,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -19140,7 +19140,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19148,7 +19148,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19156,7 +19156,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19174,7 +19174,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19182,7 +19182,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19190,7 +19190,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19200,9 +19200,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -19214,7 +19214,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19222,7 +19222,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19230,7 +19230,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19248,7 +19248,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19256,7 +19256,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19264,7 +19264,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19273,7 +19273,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -19285,7 +19285,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19293,7 +19293,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19301,7 +19301,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19319,7 +19319,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19327,7 +19327,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19335,7 +19335,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19346,11 +19346,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -19362,7 +19362,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19370,7 +19370,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19378,7 +19378,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19396,7 +19396,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19404,7 +19404,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19412,7 +19412,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19421,7 +19421,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -19433,7 +19433,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19441,7 +19441,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19449,7 +19449,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19467,7 +19467,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19475,7 +19475,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19483,7 +19483,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19493,9 +19493,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -19507,7 +19507,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19515,7 +19515,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19523,7 +19523,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19541,7 +19541,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19549,7 +19549,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19557,7 +19557,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19566,7 +19566,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -19578,7 +19578,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19586,7 +19586,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19594,7 +19594,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19612,7 +19612,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19620,7 +19620,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19628,7 +19628,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19642,11 +19642,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -19658,7 +19658,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19666,7 +19666,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19674,7 +19674,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19692,7 +19692,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19700,7 +19700,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19708,7 +19708,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19717,7 +19717,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -19729,7 +19729,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19737,7 +19737,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19745,7 +19745,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19763,7 +19763,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19771,7 +19771,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19779,7 +19779,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19789,9 +19789,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -19803,7 +19803,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19811,7 +19811,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19819,7 +19819,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19837,7 +19837,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19845,7 +19845,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19853,7 +19853,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19862,7 +19862,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -19874,7 +19874,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19882,7 +19882,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19890,7 +19890,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19908,7 +19908,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19916,7 +19916,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19924,7 +19924,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19935,11 +19935,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -19951,7 +19951,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19959,7 +19959,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19967,7 +19967,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19985,7 +19985,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -19993,7 +19993,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20001,7 +20001,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20010,7 +20010,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -20022,7 +20022,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20030,7 +20030,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20038,7 +20038,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20056,7 +20056,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20064,7 +20064,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20072,7 +20072,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20082,9 +20082,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -20096,7 +20096,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20104,7 +20104,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20112,7 +20112,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20130,7 +20130,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20138,7 +20138,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20146,7 +20146,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20155,7 +20155,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -20167,7 +20167,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20175,7 +20175,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20183,7 +20183,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20201,7 +20201,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20209,7 +20209,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20217,7 +20217,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20231,11 +20231,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -20247,7 +20247,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20255,7 +20255,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20263,7 +20263,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20281,7 +20281,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20289,7 +20289,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20297,7 +20297,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20306,7 +20306,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -20318,7 +20318,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20326,7 +20326,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20334,7 +20334,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20352,7 +20352,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20360,7 +20360,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20368,7 +20368,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20378,9 +20378,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -20392,7 +20392,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20400,7 +20400,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20408,7 +20408,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20426,7 +20426,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20434,7 +20434,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20442,7 +20442,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20451,7 +20451,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -20463,7 +20463,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20471,7 +20471,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20479,7 +20479,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20497,7 +20497,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20505,7 +20505,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20513,7 +20513,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20524,11 +20524,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -20540,7 +20540,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20548,7 +20548,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20556,7 +20556,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20574,7 +20574,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20582,7 +20582,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20590,7 +20590,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20599,7 +20599,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -20611,7 +20611,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20619,7 +20619,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20627,7 +20627,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20645,7 +20645,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20653,7 +20653,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20661,7 +20661,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20671,9 +20671,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -20685,7 +20685,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20693,7 +20693,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20701,7 +20701,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20719,7 +20719,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20727,7 +20727,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20735,7 +20735,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20744,7 +20744,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -20756,7 +20756,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20764,7 +20764,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20772,7 +20772,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20790,7 +20790,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20798,7 +20798,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20806,7 +20806,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20837,16 +20837,16 @@ { long double v = 1234567890.125; std::ios ios(0); - scientific(ios); + std::scientific(ios); // %e { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -20858,7 +20858,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20866,7 +20866,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20874,7 +20874,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20892,7 +20892,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20900,7 +20900,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20908,7 +20908,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20917,7 +20917,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -20929,7 +20929,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20937,7 +20937,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20945,7 +20945,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20963,7 +20963,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20971,7 +20971,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20979,7 +20979,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -20989,9 +20989,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -21003,7 +21003,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21011,7 +21011,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21019,7 +21019,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21037,7 +21037,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21045,7 +21045,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21053,7 +21053,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21062,7 +21062,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -21074,7 +21074,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21082,7 +21082,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21090,7 +21090,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21108,7 +21108,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21116,7 +21116,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21124,7 +21124,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21135,11 +21135,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -21151,7 +21151,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21159,7 +21159,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21167,7 +21167,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21185,7 +21185,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21193,7 +21193,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21201,7 +21201,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21210,7 +21210,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -21222,7 +21222,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21230,7 +21230,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21238,7 +21238,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21256,7 +21256,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21264,7 +21264,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21272,7 +21272,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21282,9 +21282,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -21296,7 +21296,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21304,7 +21304,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21312,7 +21312,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21330,7 +21330,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21338,7 +21338,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21346,7 +21346,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21355,7 +21355,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -21367,7 +21367,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21375,7 +21375,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21383,7 +21383,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21401,7 +21401,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21409,7 +21409,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21417,7 +21417,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21431,11 +21431,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -21447,7 +21447,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21455,7 +21455,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21463,7 +21463,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21481,7 +21481,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21489,7 +21489,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21497,7 +21497,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21506,7 +21506,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -21518,7 +21518,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21526,7 +21526,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21534,7 +21534,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21552,7 +21552,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21560,7 +21560,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21568,7 +21568,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21578,9 +21578,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -21592,7 +21592,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21600,7 +21600,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21608,7 +21608,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21626,7 +21626,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21634,7 +21634,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21642,7 +21642,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21651,7 +21651,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -21663,7 +21663,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21671,7 +21671,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21679,7 +21679,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21697,7 +21697,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21705,7 +21705,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21713,7 +21713,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21724,11 +21724,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -21740,7 +21740,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21748,7 +21748,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21756,7 +21756,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21774,7 +21774,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21782,7 +21782,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21790,7 +21790,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21799,7 +21799,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -21811,7 +21811,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21819,7 +21819,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21827,7 +21827,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21845,7 +21845,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21853,7 +21853,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21861,7 +21861,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21871,9 +21871,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -21885,7 +21885,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21893,7 +21893,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21901,7 +21901,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21919,7 +21919,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21927,7 +21927,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21935,7 +21935,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21944,7 +21944,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -21956,7 +21956,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21964,7 +21964,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21972,7 +21972,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21990,7 +21990,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -21998,7 +21998,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22006,7 +22006,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22026,11 +22026,11 @@ } ios.precision(60); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -22042,7 +22042,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22050,7 +22050,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22058,7 +22058,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22076,7 +22076,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22084,7 +22084,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22092,7 +22092,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22101,7 +22101,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -22113,7 +22113,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22121,7 +22121,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22129,7 +22129,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22147,7 +22147,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22155,7 +22155,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22163,7 +22163,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22173,9 +22173,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -22187,7 +22187,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22195,7 +22195,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22203,7 +22203,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22221,7 +22221,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22229,7 +22229,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22237,7 +22237,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22246,7 +22246,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -22258,7 +22258,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22266,7 +22266,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22274,7 +22274,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22292,7 +22292,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22300,7 +22300,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22308,7 +22308,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22319,11 +22319,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -22335,7 +22335,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22343,7 +22343,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22351,7 +22351,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22369,7 +22369,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22377,7 +22377,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22385,7 +22385,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22394,7 +22394,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -22406,7 +22406,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22414,7 +22414,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22422,7 +22422,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22440,7 +22440,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22448,7 +22448,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22456,7 +22456,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22466,9 +22466,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -22480,7 +22480,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22488,7 +22488,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22496,7 +22496,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22514,7 +22514,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22522,7 +22522,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22530,7 +22530,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22539,7 +22539,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -22551,7 +22551,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22559,7 +22559,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22567,7 +22567,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22585,7 +22585,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22593,7 +22593,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22601,7 +22601,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22626,16 +22626,16 @@ { long double v = -0.; std::ios ios(0); - hexfloat(ios); + std::hexfloat(ios); // %a { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -22647,7 +22647,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22655,7 +22655,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22663,7 +22663,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22681,7 +22681,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22689,7 +22689,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22697,7 +22697,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22706,7 +22706,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -22718,7 +22718,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22726,7 +22726,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22734,7 +22734,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22752,7 +22752,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22760,7 +22760,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22768,7 +22768,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22778,9 +22778,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -22792,7 +22792,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22800,7 +22800,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22808,7 +22808,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22826,7 +22826,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22834,7 +22834,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22842,7 +22842,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22851,7 +22851,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -22863,7 +22863,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22871,7 +22871,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22879,7 +22879,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22897,7 +22897,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22905,7 +22905,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22913,7 +22913,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22924,11 +22924,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -22940,7 +22940,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22948,7 +22948,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22956,7 +22956,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22974,7 +22974,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22982,7 +22982,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22990,7 +22990,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -22999,7 +22999,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -23011,7 +23011,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23019,7 +23019,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23027,7 +23027,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23045,7 +23045,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23053,7 +23053,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23061,7 +23061,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23071,9 +23071,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -23085,7 +23085,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23093,7 +23093,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23101,7 +23101,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23119,7 +23119,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23127,7 +23127,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23135,7 +23135,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23144,7 +23144,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -23156,7 +23156,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23164,7 +23164,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23172,7 +23172,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23190,7 +23190,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23198,7 +23198,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23206,7 +23206,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23220,11 +23220,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -23236,7 +23236,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23244,7 +23244,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23252,7 +23252,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23270,7 +23270,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23278,7 +23278,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23286,7 +23286,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23295,7 +23295,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -23307,7 +23307,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23315,7 +23315,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23323,7 +23323,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23341,7 +23341,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23349,7 +23349,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23357,7 +23357,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23367,9 +23367,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -23381,7 +23381,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23389,7 +23389,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23397,7 +23397,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23415,7 +23415,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23423,7 +23423,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23431,7 +23431,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23440,7 +23440,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -23452,7 +23452,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23460,7 +23460,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23468,7 +23468,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23486,7 +23486,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23494,7 +23494,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23502,7 +23502,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23513,11 +23513,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -23529,7 +23529,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23537,7 +23537,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23545,7 +23545,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23563,7 +23563,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23571,7 +23571,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23579,7 +23579,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23588,7 +23588,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -23600,7 +23600,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23608,7 +23608,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23616,7 +23616,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23634,7 +23634,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23642,7 +23642,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23650,7 +23650,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23660,9 +23660,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -23674,7 +23674,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23682,7 +23682,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23690,7 +23690,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23708,7 +23708,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23716,7 +23716,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23724,7 +23724,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23733,7 +23733,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -23745,7 +23745,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23753,7 +23753,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23761,7 +23761,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23779,7 +23779,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23787,7 +23787,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23795,7 +23795,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23809,11 +23809,11 @@ } ios.precision(6); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -23825,7 +23825,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23833,7 +23833,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23841,7 +23841,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23859,7 +23859,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23867,7 +23867,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23875,7 +23875,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23884,7 +23884,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -23896,7 +23896,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23904,7 +23904,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23912,7 +23912,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23930,7 +23930,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23938,7 +23938,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23946,7 +23946,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23956,9 +23956,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -23970,7 +23970,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23978,7 +23978,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -23986,7 +23986,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24004,7 +24004,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24012,7 +24012,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24020,7 +24020,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24029,7 +24029,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -24041,7 +24041,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24049,7 +24049,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24057,7 +24057,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24075,7 +24075,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24083,7 +24083,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24091,7 +24091,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24102,11 +24102,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -24118,7 +24118,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24126,7 +24126,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24134,7 +24134,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24152,7 +24152,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24160,7 +24160,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24168,7 +24168,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24177,7 +24177,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -24189,7 +24189,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24197,7 +24197,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24205,7 +24205,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24223,7 +24223,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24231,7 +24231,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24239,7 +24239,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24249,9 +24249,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -24263,7 +24263,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24271,7 +24271,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24279,7 +24279,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24297,7 +24297,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24305,7 +24305,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24313,7 +24313,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24322,7 +24322,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -24334,7 +24334,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24342,7 +24342,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24350,7 +24350,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24368,7 +24368,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24376,7 +24376,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24384,7 +24384,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24418,16 +24418,16 @@ { long double v = 1234567890.125; std::ios ios(0); - hexfloat(ios); + std::hexfloat(ios); // %a { ios.precision(0); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.width(0); ios.imbue(lc); @@ -24439,7 +24439,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24447,7 +24447,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24455,7 +24455,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24473,7 +24473,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24481,7 +24481,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24489,7 +24489,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24498,7 +24498,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -24510,7 +24510,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24518,7 +24518,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24526,7 +24526,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24544,7 +24544,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24552,7 +24552,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24560,7 +24560,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24570,9 +24570,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -24584,7 +24584,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24592,7 +24592,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24600,7 +24600,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24618,7 +24618,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24626,7 +24626,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24634,7 +24634,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24643,7 +24643,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -24655,7 +24655,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24663,7 +24663,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24671,7 +24671,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24689,7 +24689,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24697,7 +24697,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24705,7 +24705,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24716,11 +24716,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -24732,7 +24732,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24740,7 +24740,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24748,7 +24748,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24766,7 +24766,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24774,7 +24774,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24782,7 +24782,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24791,7 +24791,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -24803,7 +24803,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24811,7 +24811,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24819,7 +24819,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24837,7 +24837,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24845,7 +24845,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24853,7 +24853,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24863,9 +24863,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -24877,7 +24877,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24885,7 +24885,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24893,7 +24893,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24911,7 +24911,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24919,7 +24919,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24927,7 +24927,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24936,7 +24936,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -24948,7 +24948,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24956,7 +24956,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24964,7 +24964,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24982,7 +24982,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24990,7 +24990,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -24998,7 +24998,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25012,11 +25012,11 @@ } ios.precision(1); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -25028,7 +25028,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25036,7 +25036,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25044,7 +25044,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25062,7 +25062,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25070,7 +25070,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25078,7 +25078,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25087,7 +25087,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -25099,7 +25099,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25107,7 +25107,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25115,7 +25115,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25133,7 +25133,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25141,7 +25141,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25149,7 +25149,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25159,9 +25159,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -25173,7 +25173,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25181,7 +25181,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25189,7 +25189,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25207,7 +25207,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25215,7 +25215,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25223,7 +25223,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25232,7 +25232,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -25244,7 +25244,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25252,7 +25252,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25260,7 +25260,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25278,7 +25278,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25286,7 +25286,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25294,7 +25294,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25305,11 +25305,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -25321,7 +25321,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25329,7 +25329,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25337,7 +25337,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25355,7 +25355,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25363,7 +25363,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25371,7 +25371,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25380,7 +25380,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -25392,7 +25392,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25400,7 +25400,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25408,7 +25408,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25426,7 +25426,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25434,7 +25434,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25442,7 +25442,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25452,9 +25452,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -25466,7 +25466,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25474,7 +25474,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25482,7 +25482,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25500,7 +25500,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25508,7 +25508,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25516,7 +25516,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25525,7 +25525,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -25537,7 +25537,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25545,7 +25545,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25553,7 +25553,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25571,7 +25571,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25579,7 +25579,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25587,7 +25587,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25607,11 +25607,11 @@ } ios.precision(60); { - nouppercase(ios); + std::nouppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -25623,7 +25623,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25631,7 +25631,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25639,7 +25639,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25657,7 +25657,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25665,7 +25665,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25673,7 +25673,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25682,7 +25682,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -25694,7 +25694,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25702,7 +25702,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25710,7 +25710,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25728,7 +25728,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25736,7 +25736,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25744,7 +25744,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25754,9 +25754,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -25768,7 +25768,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25776,7 +25776,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25784,7 +25784,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25802,7 +25802,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25810,7 +25810,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25818,7 +25818,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25827,7 +25827,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -25839,7 +25839,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25847,7 +25847,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25855,7 +25855,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25873,7 +25873,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25881,7 +25881,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25889,7 +25889,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25900,11 +25900,11 @@ } } } - uppercase(ios); + std::uppercase(ios); { - noshowpos(ios); + std::noshowpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -25916,7 +25916,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25924,7 +25924,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25932,7 +25932,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25950,7 +25950,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25958,7 +25958,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25966,7 +25966,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25975,7 +25975,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -25987,7 +25987,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -25995,7 +25995,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26003,7 +26003,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26021,7 +26021,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26029,7 +26029,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26037,7 +26037,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26047,9 +26047,9 @@ } } } - showpos(ios); + std::showpos(ios); { - noshowpoint(ios); + std::noshowpoint(ios); { ios.imbue(lc); { @@ -26061,7 +26061,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26069,7 +26069,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26077,7 +26077,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26095,7 +26095,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26103,7 +26103,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26111,7 +26111,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26120,7 +26120,7 @@ } } } - showpoint(ios); + std::showpoint(ios); { ios.imbue(lc); { @@ -26132,7 +26132,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26140,7 +26140,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26148,7 +26148,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26166,7 +26166,7 @@ assert(ios.width() == 0); } ios.width(25); - left(ios); + std::left(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26174,7 +26174,7 @@ assert(ios.width() == 0); } ios.width(25); - right(ios); + std::right(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); @@ -26182,7 +26182,7 @@ assert(ios.width() == 0); } ios.width(25); - internal(ios); + std::internal(ios); { cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); std::string ex(str, iter.base()); diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_long.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_long.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_long.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_long.pass.cpp @@ -85,7 +85,7 @@ } { std::ios ios(0); - showpos(ios); + std::showpos(ios); long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -94,7 +94,7 @@ } { std::ios ios(0); - oct(ios); + std::oct(ios); long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -103,8 +103,8 @@ } { std::ios ios(0); - oct(ios); - showbase(ios); + std::oct(ios); + std::showbase(ios); long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -113,7 +113,7 @@ } { std::ios ios(0); - hex(ios); + std::hex(ios); long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -122,8 +122,8 @@ } { std::ios ios(0); - hex(ios); - showbase(ios); + std::hex(ios); + std::showbase(ios); long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -132,9 +132,9 @@ } { std::ios ios(0); - hex(ios); - showbase(ios); - uppercase(ios); + std::hex(ios); + std::showbase(ios); + std::uppercase(ios); long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -144,9 +144,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - uppercase(ios); + std::hex(ios); + std::showbase(ios); + std::uppercase(ios); long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -156,8 +156,8 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); + std::hex(ios); + std::showbase(ios); long long v = 2147483647; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -167,7 +167,7 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); + std::oct(ios); long long v = 0123467; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -177,8 +177,8 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); + std::oct(ios); + std::showbase(ios); long long v = 0123467; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -188,9 +188,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); - right(ios); + std::oct(ios); + std::showbase(ios); + std::right(ios); ios.width(15); long long v = 0123467; char str[50]; @@ -201,9 +201,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); - left(ios); + std::oct(ios); + std::showbase(ios); + std::left(ios); ios.width(15); long long v = 0123467; char str[50]; @@ -214,9 +214,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); - internal(ios); + std::oct(ios); + std::showbase(ios); + std::internal(ios); ios.width(15); long long v = 0123467; char str[50]; @@ -228,9 +228,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - right(ios); + std::hex(ios); + std::showbase(ios); + std::right(ios); ios.width(15); long long v = 2147483647; char str[50]; @@ -241,9 +241,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - left(ios); + std::hex(ios); + std::showbase(ios); + std::left(ios); ios.width(15); long long v = 2147483647; char str[50]; @@ -254,9 +254,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - internal(ios); + std::hex(ios); + std::showbase(ios); + std::internal(ios); ios.width(15); long long v = 2147483647; char str[50]; @@ -268,9 +268,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - showpos(ios); + std::showpos(ios); long long v = 1000; - right(ios); + std::right(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -281,9 +281,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - showpos(ios); + std::showpos(ios); long long v = 1000; - left(ios); + std::left(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -294,9 +294,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - showpos(ios); + std::showpos(ios); long long v = 1000; - internal(ios); + std::internal(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -308,8 +308,8 @@ std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); long long v = -1000; - right(ios); - showpos(ios); + std::right(ios); + std::showpos(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -321,7 +321,7 @@ std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); long long v = -1000; - left(ios); + std::left(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -333,7 +333,7 @@ std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); long long v = -1000; - internal(ios); + std::internal(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long.pass.cpp @@ -85,7 +85,7 @@ } { std::ios ios(0); - showpos(ios); + std::showpos(ios); unsigned long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -94,7 +94,7 @@ } { std::ios ios(0); - oct(ios); + std::oct(ios); unsigned long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -103,8 +103,8 @@ } { std::ios ios(0); - oct(ios); - showbase(ios); + std::oct(ios); + std::showbase(ios); unsigned long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -113,7 +113,7 @@ } { std::ios ios(0); - hex(ios); + std::hex(ios); unsigned long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -122,8 +122,8 @@ } { std::ios ios(0); - hex(ios); - showbase(ios); + std::hex(ios); + std::showbase(ios); unsigned long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -132,9 +132,9 @@ } { std::ios ios(0); - hex(ios); - showbase(ios); - uppercase(ios); + std::hex(ios); + std::showbase(ios); + std::uppercase(ios); unsigned long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -144,9 +144,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - uppercase(ios); + std::hex(ios); + std::showbase(ios); + std::uppercase(ios); unsigned long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -156,8 +156,8 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); + std::hex(ios); + std::showbase(ios); unsigned long v = 2147483647; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -167,7 +167,7 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); + std::oct(ios); unsigned long v = 0123467; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -177,8 +177,8 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); + std::oct(ios); + std::showbase(ios); unsigned long v = 0123467; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -188,9 +188,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); - right(ios); + std::oct(ios); + std::showbase(ios); + std::right(ios); ios.width(15); unsigned long v = 0123467; char str[50]; @@ -201,9 +201,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); - left(ios); + std::oct(ios); + std::showbase(ios); + std::left(ios); ios.width(15); unsigned long v = 0123467; char str[50]; @@ -214,9 +214,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); - internal(ios); + std::oct(ios); + std::showbase(ios); + std::internal(ios); ios.width(15); unsigned long v = 0123467; char str[50]; @@ -228,9 +228,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - right(ios); + std::hex(ios); + std::showbase(ios); + std::right(ios); ios.width(15); unsigned long v = 2147483647; char str[50]; @@ -241,9 +241,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - left(ios); + std::hex(ios); + std::showbase(ios); + std::left(ios); ios.width(15); unsigned long v = 2147483647; char str[50]; @@ -254,9 +254,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - internal(ios); + std::hex(ios); + std::showbase(ios); + std::internal(ios); ios.width(15); unsigned long v = 2147483647; char str[50]; @@ -268,9 +268,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - showpos(ios); + std::showpos(ios); unsigned long v = 1000; - right(ios); + std::right(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -281,9 +281,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - showpos(ios); + std::showpos(ios); unsigned long v = 1000; - left(ios); + std::left(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -294,9 +294,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - showpos(ios); + std::showpos(ios); unsigned long v = 1000; - internal(ios); + std::internal(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -308,8 +308,8 @@ std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); unsigned long v = static_cast(-1000); - right(ios); - showpos(ios); + std::right(ios); + std::showpos(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -322,7 +322,7 @@ std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); unsigned long v = static_cast(-1000); - left(ios); + std::left(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -335,7 +335,7 @@ std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); unsigned long v = static_cast(-1000); - internal(ios); + std::internal(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp @@ -85,7 +85,7 @@ } { std::ios ios(0); - showpos(ios); + std::showpos(ios); unsigned long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -94,7 +94,7 @@ } { std::ios ios(0); - oct(ios); + std::oct(ios); unsigned long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -103,8 +103,8 @@ } { std::ios ios(0); - oct(ios); - showbase(ios); + std::oct(ios); + std::showbase(ios); unsigned long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -113,7 +113,7 @@ } { std::ios ios(0); - hex(ios); + std::hex(ios); unsigned long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -122,8 +122,8 @@ } { std::ios ios(0); - hex(ios); - showbase(ios); + std::hex(ios); + std::showbase(ios); unsigned long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -132,9 +132,9 @@ } { std::ios ios(0); - hex(ios); - showbase(ios); - uppercase(ios); + std::hex(ios); + std::showbase(ios); + std::uppercase(ios); unsigned long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -144,9 +144,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - uppercase(ios); + std::hex(ios); + std::showbase(ios); + std::uppercase(ios); unsigned long long v = 1000; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -156,8 +156,8 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); + std::hex(ios); + std::showbase(ios); unsigned long long v = 2147483647; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -167,7 +167,7 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); + std::oct(ios); unsigned long long v = 0123467; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -177,8 +177,8 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); + std::oct(ios); + std::showbase(ios); unsigned long long v = 0123467; char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -188,9 +188,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); - right(ios); + std::oct(ios); + std::showbase(ios); + std::right(ios); ios.width(15); unsigned long long v = 0123467; char str[50]; @@ -201,9 +201,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); - left(ios); + std::oct(ios); + std::showbase(ios); + std::left(ios); ios.width(15); unsigned long long v = 0123467; char str[50]; @@ -214,9 +214,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - oct(ios); - showbase(ios); - internal(ios); + std::oct(ios); + std::showbase(ios); + std::internal(ios); ios.width(15); unsigned long long v = 0123467; char str[50]; @@ -228,9 +228,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - right(ios); + std::hex(ios); + std::showbase(ios); + std::right(ios); ios.width(15); unsigned long long v = 2147483647; char str[50]; @@ -241,9 +241,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - left(ios); + std::hex(ios); + std::showbase(ios); + std::left(ios); ios.width(15); unsigned long long v = 2147483647; char str[50]; @@ -254,9 +254,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - hex(ios); - showbase(ios); - internal(ios); + std::hex(ios); + std::showbase(ios); + std::internal(ios); ios.width(15); unsigned long long v = 2147483647; char str[50]; @@ -268,9 +268,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - showpos(ios); + std::showpos(ios); unsigned long long v = 1000; - right(ios); + std::right(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -281,9 +281,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - showpos(ios); + std::showpos(ios); unsigned long long v = 1000; - left(ios); + std::left(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -294,9 +294,9 @@ { std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); - showpos(ios); + std::showpos(ios); unsigned long long v = 1000; - internal(ios); + std::internal(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -308,8 +308,8 @@ std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); unsigned long long v = static_cast(-1000); - right(ios); - showpos(ios); + std::right(ios); + std::showpos(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -321,7 +321,7 @@ std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); unsigned long long v = static_cast(-1000); - left(ios); + std::left(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); @@ -333,7 +333,7 @@ std::ios ios(0); ios.imbue(std::locale(std::locale::classic(), new my_numpunct)); unsigned long long v = static_cast(-1000); - internal(ios); + std::internal(ios); ios.width(10); char str[50]; cpp17_output_iterator iter = f.put(cpp17_output_iterator(str), ios, '*', v); diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_bool.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_bool.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_bool.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_bool.pass.cpp @@ -104,7 +104,7 @@ assert(err == ios.failbit); assert(b == false); } - boolalpha(ios); + std::boolalpha(ios); { const char str[] = "1"; std::ios_base::iostate err = ios.goodbit; diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_double.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_double.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_double.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_double.pass.cpp @@ -86,7 +86,7 @@ } { const char str[] = "125e-1"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -98,7 +98,7 @@ } { const char str[] = "0x125p-1"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -110,7 +110,7 @@ } { const char str[] = "inf"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -122,7 +122,7 @@ } { const char str[] = "INF"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -134,7 +134,7 @@ } { const char str[] = "-inf"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -146,7 +146,7 @@ } { const char str[] = "-INF"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -158,7 +158,7 @@ } { const char str[] = "nan"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -170,7 +170,7 @@ } { const char str[] = "NAN"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_float.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_float.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_float.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_float.pass.cpp @@ -75,7 +75,7 @@ } { const char str[] = "125e-1"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -87,7 +87,7 @@ } { const char str[] = "0x125p-1"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -99,7 +99,7 @@ } { const char str[] = "inf"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -111,7 +111,7 @@ } { const char str[] = "INF"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -123,7 +123,7 @@ } { const char str[] = "-inf"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -135,7 +135,7 @@ } { const char str[] = "-INF"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -147,7 +147,7 @@ } { const char str[] = "nan"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -159,7 +159,7 @@ } { const char str[] = "NAN"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp @@ -80,7 +80,7 @@ } { const char str[] = "123"; - oct(ios); + std::oct(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -92,7 +92,7 @@ } { const char str[] = "123"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -104,7 +104,7 @@ } { const char str[] = "0x123"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -163,7 +163,7 @@ assert(err == ios.goodbit); assert(v == 2); } - dec(ios); + std::dec(ios); ios.imbue(std::locale(std::locale(), new my_numpunct)); { v = -1; diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_double.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_double.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_double.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_double.pass.cpp @@ -75,7 +75,7 @@ } { const char str[] = "125e-1"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -87,7 +87,7 @@ } { const char str[] = "0x125p-1"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -99,7 +99,7 @@ } { const char str[] = "inf"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -111,7 +111,7 @@ } { const char str[] = "INF"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -123,7 +123,7 @@ } { const char str[] = "-inf"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -135,7 +135,7 @@ } { const char str[] = "-INF"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -147,7 +147,7 @@ } { const char str[] = "nan"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), @@ -159,7 +159,7 @@ } { const char str[] = "NAN"; - hex(ios); + std::hex(ios); std::ios_base::iostate err = ios.goodbit; cpp17_input_iterator iter = f.get(cpp17_input_iterator(str), diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_long.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_long.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_long.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_long.pass.cpp @@ -79,7 +79,7 @@ assert(err == ios.goodbit); assert(v == -1); } - hex(ios); + std::hex(ios); { const char str[] = "0x7FFFFFFFFFFFFFFF"; std::ios_base::iostate err = ios.goodbit; diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_int.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_int.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_int.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_int.pass.cpp @@ -68,7 +68,7 @@ assert(err == ios.goodbit); assert(v == 1); } - hex(ios); + std::hex(ios); { const char str[] = "0xFFFFFFFF"; std::ios_base::iostate err = ios.goodbit; diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long.pass.cpp @@ -68,7 +68,7 @@ assert(err == ios.goodbit); assert(v == 1); } - hex(ios); + std::hex(ios); { const char str[] = "0xFFFFFFFF"; std::ios_base::iostate err = ios.goodbit; diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long_long.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long_long.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long_long.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long_long.pass.cpp @@ -68,7 +68,7 @@ assert(err == ios.goodbit); assert(v == 1); } - hex(ios); + std::hex(ios); { const char str[] = "0xFFFFFFFFFFFFFFFF"; std::ios_base::iostate err = ios.goodbit; diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_short.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_short.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_short.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_short.pass.cpp @@ -68,7 +68,7 @@ assert(err == ios.goodbit); assert(v == 1); } - hex(ios); + std::hex(ios); { const char str[] = "0xFFFF"; std::ios_base::iostate err = ios.goodbit; diff --git a/libcxx/test/std/ranges/range.utility/range.subrange/ctor.pair_like_conv.pass.cpp b/libcxx/test/std/ranges/range.utility/range.subrange/ctor.pair_like_conv.pass.cpp --- a/libcxx/test/std/ranges/range.utility/range.subrange/ctor.pair_like_conv.pass.cpp +++ b/libcxx/test/std/ranges/range.utility/range.subrange/ctor.pair_like_conv.pass.cpp @@ -35,8 +35,8 @@ assert(aPair.first.base() == globalBuff); assert(aPair.second.base() == globalBuff + 8); std::tuple aTuple = a; - assert(get<0>(aTuple).base() == globalBuff); - assert(get<1>(aTuple).base() == globalBuff + 8); + assert(std::get<0>(aTuple).base() == globalBuff); + assert(std::get<1>(aTuple).base() == globalBuff + 8); return true; } diff --git a/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line.pass.cpp b/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line.pass.cpp --- a/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line.pass.cpp @@ -25,13 +25,13 @@ { std::istringstream in(" abc\n def\n ghij"); std::string s("initial text"); - getline(in, s); + std::getline(in, s); assert(in.good()); assert(s == " abc"); - getline(in, s); + std::getline(in, s); assert(in.good()); assert(s == " def"); - getline(in, s); + std::getline(in, s); assert(in.eof()); assert(s == " ghij"); } @@ -39,13 +39,13 @@ { std::wistringstream in(L" abc\n def\n ghij"); std::wstring s(L"initial text"); - getline(in, s); + std::getline(in, s); assert(in.good()); assert(s == L" abc"); - getline(in, s); + std::getline(in, s); assert(in.good()); assert(s == L" def"); - getline(in, s); + std::getline(in, s); assert(in.eof()); assert(s == L" ghij"); } @@ -55,13 +55,13 @@ typedef std::basic_string, min_allocator> S; std::istringstream in(" abc\n def\n ghij"); S s("initial text"); - getline(in, s); + std::getline(in, s); assert(in.good()); assert(s == " abc"); - getline(in, s); + std::getline(in, s); assert(in.good()); assert(s == " def"); - getline(in, s); + std::getline(in, s); assert(in.eof()); assert(s == " ghij"); } @@ -70,13 +70,13 @@ typedef std::basic_string, min_allocator> S; std::wistringstream in(L" abc\n def\n ghij"); S s(L"initial text"); - getline(in, s); + std::getline(in, s); assert(in.good()); assert(s == L" abc"); - getline(in, s); + std::getline(in, s); assert(in.good()); assert(s == L" def"); - getline(in, s); + std::getline(in, s); assert(in.eof()); assert(s == L" ghij"); } diff --git a/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line_delim.pass.cpp b/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line_delim.pass.cpp --- a/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line_delim.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line_delim.pass.cpp @@ -25,16 +25,16 @@ { std::istringstream in(" abc* def** ghij"); std::string s("initial text"); - getline(in, s, '*'); + std::getline(in, s, '*'); assert(in.good()); assert(s == " abc"); - getline(in, s, '*'); + std::getline(in, s, '*'); assert(in.good()); assert(s == " def"); - getline(in, s, '*'); + std::getline(in, s, '*'); assert(in.good()); assert(s == ""); - getline(in, s, '*'); + std::getline(in, s, '*'); assert(in.eof()); assert(s == " ghij"); } @@ -42,16 +42,16 @@ { std::wistringstream in(L" abc* def** ghij"); std::wstring s(L"initial text"); - getline(in, s, L'*'); + std::getline(in, s, L'*'); assert(in.good()); assert(s == L" abc"); - getline(in, s, L'*'); + std::getline(in, s, L'*'); assert(in.good()); assert(s == L" def"); - getline(in, s, L'*'); + std::getline(in, s, L'*'); assert(in.good()); assert(s == L""); - getline(in, s, L'*'); + std::getline(in, s, L'*'); assert(in.eof()); assert(s == L" ghij"); } @@ -61,16 +61,16 @@ typedef std::basic_string, min_allocator> S; std::istringstream in(" abc* def** ghij"); S s("initial text"); - getline(in, s, '*'); + std::getline(in, s, '*'); assert(in.good()); assert(s == " abc"); - getline(in, s, '*'); + std::getline(in, s, '*'); assert(in.good()); assert(s == " def"); - getline(in, s, '*'); + std::getline(in, s, '*'); assert(in.good()); assert(s == ""); - getline(in, s, '*'); + std::getline(in, s, '*'); assert(in.eof()); assert(s == " ghij"); } @@ -79,16 +79,16 @@ typedef std::basic_string, min_allocator> S; std::wistringstream in(L" abc* def** ghij"); S s(L"initial text"); - getline(in, s, L'*'); + std::getline(in, s, L'*'); assert(in.good()); assert(s == L" abc"); - getline(in, s, L'*'); + std::getline(in, s, L'*'); assert(in.good()); assert(s == L" def"); - getline(in, s, L'*'); + std::getline(in, s, L'*'); assert(in.good()); assert(s == L""); - getline(in, s, L'*'); + std::getline(in, s, L'*'); assert(in.eof()); assert(s == L" ghij"); } diff --git a/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line_delim_rv.pass.cpp b/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line_delim_rv.pass.cpp --- a/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line_delim_rv.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line_delim_rv.pass.cpp @@ -24,27 +24,27 @@ { { std::string s("initial text"); - getline(std::istringstream(" abc* def* ghij"), s, '*'); + std::getline(std::istringstream(" abc* def* ghij"), s, '*'); assert(s == " abc"); } #ifndef TEST_HAS_NO_WIDE_CHARACTERS { std::wstring s(L"initial text"); - getline(std::wistringstream(L" abc* def* ghij"), s, L'*'); + std::getline(std::wistringstream(L" abc* def* ghij"), s, L'*'); assert(s == L" abc"); } #endif { typedef std::basic_string, min_allocator > S; S s("initial text"); - getline(std::istringstream(" abc* def* ghij"), s, '*'); + std::getline(std::istringstream(" abc* def* ghij"), s, '*'); assert(s == " abc"); } #ifndef TEST_HAS_NO_WIDE_CHARACTERS { typedef std::basic_string, min_allocator > S; S s(L"initial text"); - getline(std::wistringstream(L" abc* def* ghij"), s, L'*'); + std::getline(std::wistringstream(L" abc* def* ghij"), s, L'*'); assert(s == L" abc"); } #endif diff --git a/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line_rv.pass.cpp b/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line_rv.pass.cpp --- a/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line_rv.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/get_line_rv.pass.cpp @@ -24,27 +24,27 @@ { { std::string s("initial text"); - getline(std::istringstream(" abc\n def\n ghij"), s); + std::getline(std::istringstream(" abc\n def\n ghij"), s); assert(s == " abc"); } #ifndef TEST_HAS_NO_WIDE_CHARACTERS { std::wstring s(L"initial text"); - getline(std::wistringstream(L" abc\n def\n ghij"), s); + std::getline(std::wistringstream(L" abc\n def\n ghij"), s); assert(s == L" abc"); } #endif { typedef std::basic_string, min_allocator > S; S s("initial text"); - getline(std::istringstream(" abc\n def\n ghij"), s); + std::getline(std::istringstream(" abc\n def\n ghij"), s); assert(s == " abc"); } #ifndef TEST_HAS_NO_WIDE_CHARACTERS { typedef std::basic_string, min_allocator > S; S s(L"initial text"); - getline(std::wistringstream(L" abc\n def\n ghij"), s); + std::getline(std::wistringstream(L" abc\n def\n ghij"), s); assert(s == L" abc"); } #endif diff --git a/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/char_string.pass.cpp b/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/char_string.pass.cpp --- a/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/char_string.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/char_string.pass.cpp @@ -31,7 +31,7 @@ #if TEST_STD_VER >= 11 template TEST_CONSTEXPR_CXX20 void test1(typename S::value_type lhs, S&& rhs, const S& x) { - assert(lhs + move(rhs) == x); + assert(lhs + std::move(rhs) == x); } #endif diff --git a/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/pointer_string.pass.cpp b/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/pointer_string.pass.cpp --- a/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/pointer_string.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/pointer_string.pass.cpp @@ -31,7 +31,7 @@ #if TEST_STD_VER >= 11 template TEST_CONSTEXPR_CXX20 void test1(const typename S::value_type* lhs, S&& rhs, const S& x) { - assert(lhs + move(rhs) == x); + assert(lhs + std::move(rhs) == x); } #endif diff --git a/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/string_char.pass.cpp b/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/string_char.pass.cpp --- a/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/string_char.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/string_char.pass.cpp @@ -31,7 +31,7 @@ #if TEST_STD_VER >= 11 template TEST_CONSTEXPR_CXX20 void test1(S&& lhs, typename S::value_type rhs, const S& x) { - assert(move(lhs) + rhs == x); + assert(std::move(lhs) + rhs == x); } #endif diff --git a/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/string_pointer.pass.cpp b/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/string_pointer.pass.cpp --- a/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/string_pointer.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/string_pointer.pass.cpp @@ -31,7 +31,7 @@ #if TEST_STD_VER >= 11 template TEST_CONSTEXPR_CXX20 void test1(S&& lhs, const typename S::value_type* rhs, const S& x) { - assert(move(lhs) + rhs == x); + assert(std::move(lhs) + rhs == x); } #endif diff --git a/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/string_string.pass.cpp b/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/string_string.pass.cpp --- a/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/string_string.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/string_string.pass.cpp @@ -43,17 +43,17 @@ #if TEST_STD_VER >= 11 template TEST_CONSTEXPR_CXX20 void test1(S&& lhs, const S& rhs, const S& x) { - assert(move(lhs) + rhs == x); + assert(std::move(lhs) + rhs == x); } template TEST_CONSTEXPR_CXX20 void test2(const S& lhs, S&& rhs, const S& x) { - assert(lhs + move(rhs) == x); + assert(lhs + std::move(rhs) == x); } template TEST_CONSTEXPR_CXX20 void test3(S&& lhs, S&& rhs, const S& x) { - assert(move(lhs) + move(rhs) == x); + assert(std::move(lhs) + std::move(rhs) == x); } #endif