Index: test/std/algorithms/alg.sorting/alg.clamp/clamp.comp.pass.cpp =================================================================== --- test/std/algorithms/alg.sorting/alg.clamp/clamp.comp.pass.cpp +++ test/std/algorithms/alg.sorting/alg.clamp/clamp.comp.pass.cpp @@ -22,11 +22,11 @@ Tag() : val(0), tag("Default") {} Tag(int a, const char *b) : val(a), tag(b) {} ~Tag() {} - + int val; const char *tag; }; - + bool eq(const Tag& rhs, const Tag& lhs) { return rhs.val == lhs.val && rhs.tag == lhs.tag; } // bool operator==(const Tag& rhs, const Tag& lhs) { return rhs.val == lhs.val; } bool comp (const Tag& rhs, const Tag& lhs) { return rhs.val < lhs.val; } Index: test/std/algorithms/alg.sorting/alg.clamp/clamp.pass.cpp =================================================================== --- test/std/algorithms/alg.sorting/alg.clamp/clamp.pass.cpp +++ test/std/algorithms/alg.sorting/alg.clamp/clamp.pass.cpp @@ -21,11 +21,11 @@ Tag() : val(0), tag("Default") {} Tag(int a, const char *b) : val(a), tag(b) {} ~Tag() {} - + int val; const char *tag; }; - + bool eq(const Tag& rhs, const Tag& lhs) { return rhs.val == lhs.val && rhs.tag == lhs.tag; } // bool operator==(const Tag& rhs, const Tag& lhs) { return rhs.val == lhs.val; } bool operator< (const Tag& rhs, const Tag& lhs) { return rhs.val < lhs.val; } Index: test/std/atomics/atomics.types.generic/integral.pass.cpp =================================================================== --- test/std/atomics/atomics.types.generic/integral.pass.cpp +++ test/std/atomics/atomics.types.generic/integral.pass.cpp @@ -195,7 +195,7 @@ test(); test(); test(); - + test(); test(); test(); Index: test/std/containers/associative/map/map.cons/compare_copy_constructible.fail.cpp =================================================================== --- test/std/containers/associative/map/map.cons/compare_copy_constructible.fail.cpp +++ test/std/containers/associative/map/map.cons/compare_copy_constructible.fail.cpp @@ -9,7 +9,7 @@ // -// Check that std::map fails to instantiate if the comparison predicate is +// Check that std::map fails to instantiate if the comparison predicate is // not copy-constructible. This is LWG issue 2436 #include Index: test/std/containers/associative/map/map.cons/copy_assign.pass.cpp =================================================================== --- test/std/containers/associative/map/map.cons/copy_assign.pass.cpp +++ test/std/containers/associative/map/map.cons/copy_assign.pass.cpp @@ -36,7 +36,7 @@ int foo{0}; counting_allocatorT(int f) noexcept : foo(f) {} - using propagate_on_container_copy_assignment = std::true_type; + using propagate_on_container_copy_assignment = std::true_type; template counting_allocatorT(const counting_allocatorT& other) noexcept {foo = other.foo;} template bool operator==(const counting_allocatorT& other) const noexcept { return foo == other.foo; } template bool operator!=(const counting_allocatorT& other) const noexcept { return foo != other.foo; } @@ -59,7 +59,7 @@ int foo{0}; counting_allocatorF(int f) noexcept : foo(f) {} - using propagate_on_container_copy_assignment = std::false_type; + using propagate_on_container_copy_assignment = std::false_type; template counting_allocatorF(const counting_allocatorF& other) noexcept {foo = other.foo;} template bool operator==(const counting_allocatorF& other) const noexcept { return foo == other.foo; } template bool operator!=(const counting_allocatorF& other) const noexcept { return foo != other.foo; } @@ -77,7 +77,7 @@ bool balanced_allocs() { std::vector temp1, temp2; - + std::cout << "Allocations = " << ca_allocs.size() << ", deallocatons = " << ca_deallocs.size() << std::endl; if (ca_allocs.size() != ca_deallocs.size()) return false; @@ -87,13 +87,13 @@ temp2.clear(); std::unique_copy(temp1.begin(), temp1.end(), std::back_inserter>(temp2)); std::cout << "There were " << temp2.size() << " different allocators\n"; - + for (std::vector::const_iterator it = temp2.begin(); it != temp2.end(); ++it ) { std::cout << *it << ": " << std::count(ca_allocs.begin(), ca_allocs.end(), *it) << " vs " << std::count(ca_deallocs.begin(), ca_deallocs.end(), *it) << std::endl; if ( std::count(ca_allocs.begin(), ca_allocs.end(), *it) != std::count(ca_deallocs.begin(), ca_deallocs.end(), *it)) return false; } - + temp1 = ca_allocs; std::sort(temp1.begin(), temp1.end()); temp2.clear(); @@ -104,7 +104,7 @@ if ( std::count(ca_allocs.begin(), ca_allocs.end(), *it) != std::count(ca_deallocs.begin(), ca_deallocs.end(), *it)) return false; } - + return true; } #endif Index: test/std/containers/associative/multimap/multimap.cons/compare_copy_constructible.fail.cpp =================================================================== --- test/std/containers/associative/multimap/multimap.cons/compare_copy_constructible.fail.cpp +++ test/std/containers/associative/multimap/multimap.cons/compare_copy_constructible.fail.cpp @@ -9,7 +9,7 @@ // -// Check that std::multimap fails to instantiate if the comparison predicate is +// Check that std::multimap fails to instantiate if the comparison predicate is // not copy-constructible. This is LWG issue 2436 #include Index: test/std/containers/associative/multiset/multiset.cons/compare_copy_constructible.fail.cpp =================================================================== --- test/std/containers/associative/multiset/multiset.cons/compare_copy_constructible.fail.cpp +++ test/std/containers/associative/multiset/multiset.cons/compare_copy_constructible.fail.cpp @@ -9,7 +9,7 @@ // -// Check that std::multiset fails to instantiate if the comparison predicate is +// Check that std::multiset fails to instantiate if the comparison predicate is // not copy-constructible. This is LWG issue 2436 #include Index: test/std/containers/associative/set/set.cons/compare_copy_constructible.fail.cpp =================================================================== --- test/std/containers/associative/set/set.cons/compare_copy_constructible.fail.cpp +++ test/std/containers/associative/set/set.cons/compare_copy_constructible.fail.cpp @@ -9,7 +9,7 @@ // -// Check that std::set fails to instantiate if the comparison predicate is +// Check that std::set fails to instantiate if the comparison predicate is // not copy-constructible. This is LWG issue 2436 #include Index: test/std/containers/sequences/vector/vector.data/data.pass.cpp =================================================================== --- test/std/containers/sequences/vector/vector.data/data.pass.cpp +++ test/std/containers/sequences/vector/vector.data/data.pass.cpp @@ -21,7 +21,7 @@ Nasty() : i_(0) {} Nasty(int i) : i_(i) {} ~Nasty() {} - + Nasty * operator&() const { assert(false); return nullptr; } int i_; }; Index: test/std/containers/sequences/vector/vector.data/data_const.pass.cpp =================================================================== --- test/std/containers/sequences/vector/vector.data/data_const.pass.cpp +++ test/std/containers/sequences/vector/vector.data/data_const.pass.cpp @@ -21,7 +21,7 @@ Nasty() : i_(0) {} Nasty(int i) : i_(i) {} ~Nasty() {} - + Nasty * operator&() const { assert(false); return nullptr; } int i_; }; Index: test/std/containers/unord/unord.map/unord.map.cnstr/compare_copy_constructible.fail.cpp =================================================================== --- test/std/containers/unord/unord.map/unord.map.cnstr/compare_copy_constructible.fail.cpp +++ test/std/containers/unord/unord.map/unord.map.cnstr/compare_copy_constructible.fail.cpp @@ -12,7 +12,7 @@ // -// Check that std::unordered_map fails to instantiate if the comparison predicate is +// Check that std::unordered_map fails to instantiate if the comparison predicate is // not copy-constructible. This is LWG issue 2436 #include Index: test/std/containers/unord/unord.map/unord.map.cnstr/hash_copy_constructible.fail.cpp =================================================================== --- test/std/containers/unord/unord.map/unord.map.cnstr/hash_copy_constructible.fail.cpp +++ test/std/containers/unord/unord.map/unord.map.cnstr/hash_copy_constructible.fail.cpp @@ -12,7 +12,7 @@ // -// Check that std::unordered_map fails to instantiate if the hash function is +// Check that std::unordered_map fails to instantiate if the hash function is // not copy-constructible. This is mentioned in LWG issue 2436 #include Index: test/std/containers/unord/unord.multimap/unord.multimap.cnstr/compare_copy_constructible.fail.cpp =================================================================== --- test/std/containers/unord/unord.multimap/unord.multimap.cnstr/compare_copy_constructible.fail.cpp +++ test/std/containers/unord/unord.multimap/unord.multimap.cnstr/compare_copy_constructible.fail.cpp @@ -12,7 +12,7 @@ // -// Check that std::unordered_multimap fails to instantiate if the comparison predicate is +// Check that std::unordered_multimap fails to instantiate if the comparison predicate is // not copy-constructible. This is LWG issue 2436 #include Index: test/std/containers/unord/unord.multimap/unord.multimap.cnstr/hash_copy_constructible.fail.cpp =================================================================== --- test/std/containers/unord/unord.multimap/unord.multimap.cnstr/hash_copy_constructible.fail.cpp +++ test/std/containers/unord/unord.multimap/unord.multimap.cnstr/hash_copy_constructible.fail.cpp @@ -12,7 +12,7 @@ // -// Check that std::unordered_multimap fails to instantiate if the hash function is +// Check that std::unordered_multimap fails to instantiate if the hash function is // not copy-constructible. This is mentioned in LWG issue 2436 #include Index: test/std/containers/unord/unord.multiset/unord.multiset.cnstr/compare_copy_constructible.fail.cpp =================================================================== --- test/std/containers/unord/unord.multiset/unord.multiset.cnstr/compare_copy_constructible.fail.cpp +++ test/std/containers/unord/unord.multiset/unord.multiset.cnstr/compare_copy_constructible.fail.cpp @@ -9,7 +9,7 @@ // -// Check that std::unordered_set fails to instantiate if the comparison predicate is +// Check that std::unordered_set fails to instantiate if the comparison predicate is // not copy-constructible. This is LWG issue 2436 #include Index: test/std/containers/unord/unord.multiset/unord.multiset.cnstr/hash_copy_constructible.fail.cpp =================================================================== --- test/std/containers/unord/unord.multiset/unord.multiset.cnstr/hash_copy_constructible.fail.cpp +++ test/std/containers/unord/unord.multiset/unord.multiset.cnstr/hash_copy_constructible.fail.cpp @@ -9,7 +9,7 @@ // -// Check that std::unordered_multiset fails to instantiate if the hash function is +// Check that std::unordered_multiset fails to instantiate if the hash function is // not copy-constructible. This is mentioned in LWG issue 2436 #include Index: test/std/containers/unord/unord.set/unord.set.cnstr/compare_copy_constructible.fail.cpp =================================================================== --- test/std/containers/unord/unord.set/unord.set.cnstr/compare_copy_constructible.fail.cpp +++ test/std/containers/unord/unord.set/unord.set.cnstr/compare_copy_constructible.fail.cpp @@ -9,7 +9,7 @@ // -// Check that std::unordered_set fails to instantiate if the comparison predicate is +// Check that std::unordered_set fails to instantiate if the comparison predicate is // not copy-constructible. This is LWG issue 2436 #include Index: test/std/containers/unord/unord.set/unord.set.cnstr/hash_copy_constructible.fail.cpp =================================================================== --- test/std/containers/unord/unord.set/unord.set.cnstr/hash_copy_constructible.fail.cpp +++ test/std/containers/unord/unord.set/unord.set.cnstr/hash_copy_constructible.fail.cpp @@ -9,7 +9,7 @@ // -// Check that std::unordered_set fails to instantiate if the hash function is +// Check that std::unordered_set fails to instantiate if the hash function is // not copy-constructible. This is mentioned in LWG issue 2436 #include Index: test/std/diagnostics/syserr/is_error_code_enum.pass.cpp =================================================================== --- test/std/diagnostics/syserr/is_error_code_enum.pass.cpp +++ test/std/diagnostics/syserr/is_error_code_enum.pass.cpp @@ -39,7 +39,7 @@ struct is_error_code_enum : public std::true_type {}; } - + int main() { test(); Index: test/std/diagnostics/syserr/is_error_condition_enum.pass.cpp =================================================================== --- test/std/diagnostics/syserr/is_error_condition_enum.pass.cpp +++ test/std/diagnostics/syserr/is_error_condition_enum.pass.cpp @@ -39,13 +39,13 @@ struct is_error_condition_enum : public std::true_type {}; } - + int main() { test(); test(); test(); test(); - + test(); } Index: test/std/experimental/numeric/numeric.ops/numeric.ops.gcd/gcd.not_integral1.fail.cpp =================================================================== --- test/std/experimental/numeric/numeric.ops/numeric.ops.gcd/gcd.not_integral1.fail.cpp +++ test/std/experimental/numeric/numeric.ops/numeric.ops.gcd/gcd.not_integral1.fail.cpp @@ -6,7 +6,7 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11 // Index: test/std/experimental/numeric/numeric.ops/numeric.ops.gcd/gcd.not_integral2.fail.cpp =================================================================== --- test/std/experimental/numeric/numeric.ops/numeric.ops.gcd/gcd.not_integral2.fail.cpp +++ test/std/experimental/numeric/numeric.ops/numeric.ops.gcd/gcd.not_integral2.fail.cpp @@ -6,7 +6,7 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11 // Index: test/std/experimental/numeric/numeric.ops/numeric.ops.gcd/gcd.pass.cpp =================================================================== --- test/std/experimental/numeric/numeric.ops/numeric.ops.gcd/gcd.pass.cpp +++ test/std/experimental/numeric/numeric.ops/numeric.ops.gcd/gcd.pass.cpp @@ -6,7 +6,7 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11 // Index: test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp =================================================================== --- test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp +++ test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp @@ -6,7 +6,7 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11 // Index: test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.pass.cpp =================================================================== --- test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.pass.cpp +++ test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.pass.cpp @@ -6,7 +6,7 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11 // Index: test/std/iterators/iterator.range/begin-end.fail.cpp =================================================================== --- test/std/iterators/iterator.range/begin-end.fail.cpp +++ test/std/iterators/iterator.range/begin-end.fail.cpp @@ -39,13 +39,13 @@ FakeIter crbegin(const FakeContainer &) { return 13; } FakeIter crend (const FakeContainer &) { return 14; } } - + int main(){ // Bug #28927 - shouldn't find these via ADL (void) std::cbegin (Foo::FakeContainer()); (void) std::cend (Foo::FakeContainer()); (void) std::crbegin(Foo::FakeContainer()); - (void) std::crend (Foo::FakeContainer()); + (void) std::crend (Foo::FakeContainer()); } #endif Index: test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op==/test.pass.cpp =================================================================== --- test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op==/test.pass.cpp +++ test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op==/test.pass.cpp @@ -42,7 +42,7 @@ test(random_access_iterator(s), random_access_iterator(s+1), false); test(s, s, true); test(s, s+1, false); - + #if TEST_STD_VER > 14 { constexpr const char *p = "123456789"; Index: test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool1.fail.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool1.fail.cpp +++ test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool1.fail.cpp @@ -6,14 +6,14 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11, c++14 // // template // constexpr common_type_t<_M,_N> gcd(_M __m, _N __n) -// Remarks: If either M or N is not an integer type, +// Remarks: If either M or N is not an integer type, // or if either is (a possibly cv-qualified) bool, the program is ill-formed. #include Index: test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool2.fail.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool2.fail.cpp +++ test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool2.fail.cpp @@ -6,14 +6,14 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11, c++14 // // template // constexpr common_type_t<_M,_N> gcd(_M __m, _N __n) -// Remarks: If either M or N is not an integer type, +// Remarks: If either M or N is not an integer type, // or if either is (a possibly cv-qualified) bool, the program is ill-formed. #include Index: test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool3.fail.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool3.fail.cpp +++ test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool3.fail.cpp @@ -6,14 +6,14 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11, c++14 // // template // constexpr common_type_t<_M,_N> gcd(_M __m, _N __n) -// Remarks: If either M or N is not an integer type, +// Remarks: If either M or N is not an integer type, // or if either is (a possibly cv-qualified) bool, the program is ill-formed. #include Index: test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool4.fail.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool4.fail.cpp +++ test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool4.fail.cpp @@ -6,14 +6,14 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11, c++14 // // template // constexpr common_type_t<_M,_N> gcd(_M __m, _N __n) -// Remarks: If either M or N is not an integer type, +// Remarks: If either M or N is not an integer type, // or if either is (a possibly cv-qualified) bool, the program is ill-formed. #include Index: test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.not_integral1.fail.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.not_integral1.fail.cpp +++ test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.not_integral1.fail.cpp @@ -6,14 +6,14 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11, c++14 // // template // constexpr common_type_t<_M,_N> gcd(_M __m, _N __n) -// Remarks: If either M or N is not an integer type, +// Remarks: If either M or N is not an integer type, // or if either is (a possibly cv-qualified) bool, the program is ill-formed. #include Index: test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.not_integral2.fail.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.not_integral2.fail.cpp +++ test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.not_integral2.fail.cpp @@ -6,14 +6,14 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11, c++14 // // template // constexpr common_type_t<_M,_N> gcd(_M __m, _N __n) -// Remarks: If either M or N is not an integer type, +// Remarks: If either M or N is not an integer type, // or if either is (a possibly cv-qualified) bool, the program is ill-formed. #include Index: test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.pass.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.pass.cpp +++ test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.pass.cpp @@ -6,7 +6,7 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11, c++14 // Index: test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool1.fail.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool1.fail.cpp +++ test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool1.fail.cpp @@ -6,14 +6,14 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11, c++14 // // template // constexpr common_type_t<_M,_N> lcm(_M __m, _N __n) -// Remarks: If either M or N is not an integer type, +// Remarks: If either M or N is not an integer type, // or if either is (a possibly cv-qualified) bool, the program is ill-formed. #include Index: test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool2.fail.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool2.fail.cpp +++ test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool2.fail.cpp @@ -6,14 +6,14 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11, c++14 // // template // constexpr common_type_t<_M,_N> lcm(_M __m, _N __n) -// Remarks: If either M or N is not an integer type, +// Remarks: If either M or N is not an integer type, // or if either is (a possibly cv-qualified) bool, the program is ill-formed. #include Index: test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool3.fail.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool3.fail.cpp +++ test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool3.fail.cpp @@ -6,14 +6,14 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11, c++14 // // template // constexpr common_type_t<_M,_N> lcm(_M __m, _N __n) -// Remarks: If either M or N is not an integer type, +// Remarks: If either M or N is not an integer type, // or if either is (a possibly cv-qualified) bool, the program is ill-formed. #include Index: test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool4.fail.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool4.fail.cpp +++ test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool4.fail.cpp @@ -6,14 +6,14 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11, c++14 // // template // constexpr common_type_t<_M,_N> lcm(_M __m, _N __n) -// Remarks: If either M or N is not an integer type, +// Remarks: If either M or N is not an integer type, // or if either is (a possibly cv-qualified) bool, the program is ill-formed. #include Index: test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.not_integral1.fail.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.not_integral1.fail.cpp +++ test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.not_integral1.fail.cpp @@ -13,7 +13,7 @@ // template // constexpr common_type_t<_M,_N> lcm(_M __m, _N __n) -// Remarks: If either M or N is not an integer type, +// Remarks: If either M or N is not an integer type, // or if either is (a possibly cv-qualified) bool, the program is ill-formed. #include Index: test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp +++ test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp @@ -6,14 +6,14 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11, c++14 // // template // constexpr common_type_t<_M,_N> lcm(_M __m, _N __n) -// Remarks: If either M or N is not an integer type, +// Remarks: If either M or N is not an integer type, // or if either is (a possibly cv-qualified) bool, the program is ill-formed. #include Index: test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.pass.cpp =================================================================== --- test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.pass.cpp +++ test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.pass.cpp @@ -6,7 +6,7 @@ // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// +// // UNSUPPORTED: c++98, c++03, c++11, c++14 // Index: test/std/strings/basic.string/string.cons/T_size_size.pass.cpp =================================================================== --- test/std/strings/basic.string/string.cons/T_size_size.pass.cpp +++ test/std/strings/basic.string/string.cons/T_size_size.pass.cpp @@ -10,7 +10,7 @@ // // template -// basic_string(const _Tp& __t, size_type __pos, size_type __n, +// basic_string(const _Tp& __t, size_type __pos, size_type __n, // const allocator_type& __a = allocator_type()); // // Mostly we're testing string_view here Index: test/std/strings/basic.string/string.modifiers/string_append/iterator.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_append/iterator.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_append/iterator.pass.cpp @@ -183,14 +183,14 @@ typedef std::string S; S s_short = "123/"; S s_long = "Lorem ipsum dolor sit amet, consectetur/"; - + s_short.append(s_short.begin(), s_short.end()); assert(s_short == "123/123/"); s_short.append(s_short.begin(), s_short.end()); assert(s_short == "123/123/123/123/"); s_short.append(s_short.begin(), s_short.end()); assert(s_short == "123/123/123/123/123/123/123/123/"); - + s_long.append(s_long.begin(), s_long.end()); assert(s_long == "Lorem ipsum dolor sit amet, consectetur/Lorem ipsum dolor sit amet, consectetur/"); } Index: test/std/strings/basic.string/string.modifiers/string_append/pointer.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_append/pointer.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_append/pointer.pass.cpp @@ -66,14 +66,14 @@ typedef std::string S; S s_short = "123/"; S s_long = "Lorem ipsum dolor sit amet, consectetur/"; - + s_short.append(s_short.c_str()); assert(s_short == "123/123/"); s_short.append(s_short.c_str()); assert(s_short == "123/123/123/123/"); s_short.append(s_short.c_str()); assert(s_short == "123/123/123/123/123/123/123/123/"); - + s_long.append(s_long.c_str()); assert(s_long == "Lorem ipsum dolor sit amet, consectetur/Lorem ipsum dolor sit amet, consectetur/"); } Index: test/std/strings/basic.string/string.modifiers/string_append/pointer_size.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_append/pointer_size.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_append/pointer_size.pass.cpp @@ -75,14 +75,14 @@ typedef std::string S; S s_short = "123/"; S s_long = "Lorem ipsum dolor sit amet, consectetur/"; - + s_short.append(s_short.data(), s_short.size()); assert(s_short == "123/123/"); s_short.append(s_short.data(), s_short.size()); assert(s_short == "123/123/123/123/"); s_short.append(s_short.data(), s_short.size()); assert(s_short == "123/123/123/123/123/123/123/123/"); - + s_long.append(s_long.data(), s_long.size()); assert(s_long == "Lorem ipsum dolor sit amet, consectetur/Lorem ipsum dolor sit amet, consectetur/"); } Index: test/std/strings/basic.string/string.modifiers/string_assign/iterator.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_assign/iterator.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_assign/iterator.pass.cpp @@ -184,12 +184,12 @@ typedef std::string S; S s_short = "123/"; S s_long = "Lorem ipsum dolor sit amet, consectetur/"; - + s_short.assign(s_short.begin(), s_short.end()); assert(s_short == "123/"); s_short.assign(s_short.begin() + 2, s_short.end()); assert(s_short == "3/"); - + s_long.assign(s_long.begin(), s_long.end()); assert(s_long == "Lorem ipsum dolor sit amet, consectetur/"); Index: test/std/strings/basic.string/string.modifiers/string_assign/pointer.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_assign/pointer.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_assign/pointer.pass.cpp @@ -66,12 +66,12 @@ typedef std::string S; S s_short = "123/"; S s_long = "Lorem ipsum dolor sit amet, consectetur/"; - + s_short.assign(s_short.c_str()); assert(s_short == "123/"); s_short.assign(s_short.c_str() + 2); assert(s_short == "3/"); - + s_long.assign(s_long.c_str() + 30); assert(s_long == "nsectetur/"); } Index: test/std/strings/basic.string/string.modifiers/string_assign/pointer_size.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_assign/pointer_size.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_assign/pointer_size.pass.cpp @@ -74,12 +74,12 @@ typedef std::string S; S s_short = "123/"; S s_long = "Lorem ipsum dolor sit amet, consectetur/"; - + s_short.assign(s_short.data(), s_short.size()); assert(s_short == "123/"); s_short.assign(s_short.data() + 2, s_short.size() - 2); assert(s_short == "3/"); - + s_long.assign(s_long.data(), s_long.size()); assert(s_long == "Lorem ipsum dolor sit amet, consectetur/"); Index: test/std/strings/basic.string/string.modifiers/string_insert/iter_iter_iter.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_insert/iter_iter_iter.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_insert/iter_iter_iter.pass.cpp @@ -174,14 +174,14 @@ typedef std::string S; S s_short = "123/"; S s_long = "Lorem ipsum dolor sit amet, consectetur/"; - + s_short.insert(s_short.begin(), s_short.begin(), s_short.end()); assert(s_short == "123/123/"); s_short.insert(s_short.begin(), s_short.begin(), s_short.end()); assert(s_short == "123/123/123/123/"); s_short.insert(s_short.begin(), s_short.begin(), s_short.end()); assert(s_short == "123/123/123/123/123/123/123/123/"); - + s_long.insert(s_long.begin(), s_long.begin(), s_long.end()); assert(s_long == "Lorem ipsum dolor sit amet, consectetur/Lorem ipsum dolor sit amet, consectetur/"); } Index: test/std/strings/basic.string/string.modifiers/string_insert/size_T_size_size.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_insert/size_T_size_size.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_insert/size_T_size_size.pass.cpp @@ -1822,7 +1822,7 @@ s.insert(0, sv, 0); // calls insert(T, pos, npos) assert(s == sv); s.clear(); - + s.insert(0, sv, 0, std::string::npos); // calls insert(T, pos, npos) assert(s == sv); s.clear(); Index: test/std/strings/basic.string/string.modifiers/string_insert/size_pointer.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_insert/size_pointer.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_insert/size_pointer.pass.cpp @@ -223,14 +223,14 @@ typedef std::string S; S s_short = "123/"; S s_long = "Lorem ipsum dolor sit amet, consectetur/"; - + s_short.insert(0, s_short.c_str()); assert(s_short == "123/123/"); s_short.insert(0, s_short.c_str()); assert(s_short == "123/123/123/123/"); s_short.insert(0, s_short.c_str()); assert(s_short == "123/123/123/123/123/123/123/123/"); - + s_long.insert(0, s_long.c_str()); assert(s_long == "Lorem ipsum dolor sit amet, consectetur/Lorem ipsum dolor sit amet, consectetur/"); } Index: test/std/strings/basic.string/string.modifiers/string_insert/size_pointer_size.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_insert/size_pointer_size.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_insert/size_pointer_size.pass.cpp @@ -704,14 +704,14 @@ typedef std::string S; S s_short = "123/"; S s_long = "Lorem ipsum dolor sit amet, consectetur/"; - + s_short.insert(0, s_short.data(), s_short.size()); assert(s_short == "123/123/"); s_short.insert(0, s_short.data(), s_short.size()); assert(s_short == "123/123/123/123/"); s_short.insert(0, s_short.data(), s_short.size()); assert(s_short == "123/123/123/123/123/123/123/123/"); - + s_long.insert(0, s_long.data(), s_long.size()); assert(s_long == "Lorem ipsum dolor sit amet, consectetur/Lorem ipsum dolor sit amet, consectetur/"); } Index: test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_iter_iter.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_iter_iter.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_iter_iter.pass.cpp @@ -1012,14 +1012,14 @@ typedef std::string S; S s_short = "123/"; S s_long = "Lorem ipsum dolor sit amet, consectetur/"; - + s_short.replace(s_short.begin(), s_short.begin(), s_short.begin(), s_short.end()); assert(s_short == "123/123/"); s_short.replace(s_short.begin(), s_short.begin(), s_short.begin(), s_short.end()); assert(s_short == "123/123/123/123/"); s_short.replace(s_short.begin(), s_short.begin(), s_short.begin(), s_short.end()); assert(s_short == "123/123/123/123/123/123/123/123/"); - + s_long.replace(s_long.begin(), s_long.begin(), s_long.begin(), s_long.end()); assert(s_long == "Lorem ipsum dolor sit amet, consectetur/Lorem ipsum dolor sit amet, consectetur/"); } Index: test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_pointer.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_pointer.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_pointer.pass.cpp @@ -287,14 +287,14 @@ typedef std::string S; S s_short = "123/"; S s_long = "Lorem ipsum dolor sit amet, consectetur/"; - + s_short.replace(s_short.begin(), s_short.begin(), s_short.c_str()); assert(s_short == "123/123/"); s_short.replace(s_short.begin(), s_short.begin(), s_short.c_str()); assert(s_short == "123/123/123/123/"); s_short.replace(s_short.begin(), s_short.begin(), s_short.c_str()); assert(s_short == "123/123/123/123/123/123/123/123/"); - + s_long.replace(s_long.begin(), s_long.begin(), s_long.c_str()); assert(s_long == "Lorem ipsum dolor sit amet, consectetur/Lorem ipsum dolor sit amet, consectetur/"); } Index: test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_pointer_size.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_pointer_size.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_pointer_size.pass.cpp @@ -977,14 +977,14 @@ typedef std::string S; S s_short = "123/"; S s_long = "Lorem ipsum dolor sit amet, consectetur/"; - + s_short.replace(s_short.begin(), s_short.begin(), s_short.data(), s_short.size()); assert(s_short == "123/123/"); s_short.replace(s_short.begin(), s_short.begin(), s_short.data(), s_short.size()); assert(s_short == "123/123/123/123/"); s_short.replace(s_short.begin(), s_short.begin(), s_short.data(), s_short.size()); assert(s_short == "123/123/123/123/123/123/123/123/"); - + s_long.replace(s_long.begin(), s_long.begin(), s_long.data(), s_long.size()); assert(s_long == "Lorem ipsum dolor sit amet, consectetur/Lorem ipsum dolor sit amet, consectetur/"); } Index: test/std/strings/basic.string/string.modifiers/string_replace/size_size_T_size_size.pass.cpp =================================================================== --- test/std/strings/basic.string/string.modifiers/string_replace/size_size_T_size_size.pass.cpp +++ test/std/strings/basic.string/string.modifiers/string_replace/size_size_T_size_size.pass.cpp @@ -10,7 +10,7 @@ // // template -// basic_string& replace(size_type pos1, size_type n1, const T& t, +// basic_string& replace(size_type pos1, size_type n1, const T& t, // size_type pos2, size_type n=npos); // // Mostly we're testing string_view here Index: test/std/strings/basic.string/string.nonmembers/string_operator==/string_string_view.pass.cpp =================================================================== --- test/std/strings/basic.string/string.nonmembers/string_operator==/string_string_view.pass.cpp +++ test/std/strings/basic.string/string.nonmembers/string_operator==/string_string_view.pass.cpp @@ -10,7 +10,7 @@ // // we get this comparison "for free" because the string implicitly converts to the string_view - + #include #include Index: test/std/utilities/meta/meta.trans/meta.trans.other/underlying_type.pass.cpp =================================================================== --- test/std/utilities/meta/meta.trans/meta.trans.other/underlying_type.pass.cpp +++ test/std/utilities/meta/meta.trans/meta.trans.other/underlying_type.pass.cpp @@ -29,11 +29,11 @@ static_assert((std::is_same::type, int>::value), "E has the wrong underlying type"); static_assert((std::is_same::type, ExpectUnsigned>::value), - "F has the wrong underlying type"); + "F has the wrong underlying type"); #if TEST_STD_VER > 11 static_assert((std::is_same, int>::value), ""); - static_assert((std::is_same, ExpectUnsigned>::value), ""); + static_assert((std::is_same, ExpectUnsigned>::value), ""); #endif #if TEST_STD_VER >= 11