Index: test/std/experimental/utilities/meta/meta.detect/detected_or.pass.cpp =================================================================== --- test/std/experimental/utilities/meta/meta.detect/detected_or.pass.cpp +++ test/std/experimental/utilities/meta/meta.detect/detected_or.pass.cpp @@ -19,7 +19,7 @@ template using hasFoo = typename T::Foo; - + struct yesFoo { using Foo = int; }; Index: test/std/experimental/utilities/meta/meta.detect/detected_t.pass.cpp =================================================================== --- test/std/experimental/utilities/meta/meta.detect/detected_t.pass.cpp +++ test/std/experimental/utilities/meta/meta.detect/detected_t.pass.cpp @@ -19,7 +19,7 @@ template using callFoo = decltype(std::declval().Foo()); - + struct yesFoo { int Foo() { return 0; } }; Index: test/std/experimental/utilities/meta/meta.detect/is_detected.pass.cpp =================================================================== --- test/std/experimental/utilities/meta/meta.detect/is_detected.pass.cpp +++ test/std/experimental/utilities/meta/meta.detect/is_detected.pass.cpp @@ -19,7 +19,7 @@ template using copy_assign_t = decltype(std::declval() = std::declval()); - + struct not_assignable { not_assignable & operator=(const not_assignable&) = delete; }; Index: test/std/experimental/utilities/meta/meta.detect/is_detected_convertible.pass.cpp =================================================================== --- test/std/experimental/utilities/meta/meta.detect/is_detected_convertible.pass.cpp +++ test/std/experimental/utilities/meta/meta.detect/is_detected_convertible.pass.cpp @@ -19,7 +19,7 @@ template using callFoo = decltype(std::declval().Foo()); - + struct yesFoo { int Foo() { return 0; } }; Index: test/std/experimental/utilities/meta/meta.detect/is_detected_exact.pass.cpp =================================================================== --- test/std/experimental/utilities/meta/meta.detect/is_detected_exact.pass.cpp +++ test/std/experimental/utilities/meta/meta.detect/is_detected_exact.pass.cpp @@ -19,7 +19,7 @@ template using callFoo = decltype(std::declval().Foo()); - + struct yesFoo { int Foo() { return 0; } };