Index: include/experimental/utility =================================================================== --- include/experimental/utility +++ include/experimental/utility @@ -33,8 +33,6 @@ # include -#if _LIBCPP_STD_VER > 11 - # include _LIBCPP_BEGIN_NAMESPACE_LFTS @@ -43,6 +41,4 @@ _LIBCPP_END_NAMESPACE_LFTS -#endif /* _LIBCPP_STD_VER > 11 */ - #endif /* _LIBCPP_EXPERIMENTAL_UTILITY */ Index: test/experimental/utilities/utility/utility.erased.type/erased_type.pass.cpp =================================================================== --- test/experimental/utilities/utility/utility.erased.type/erased_type.pass.cpp +++ test/experimental/utilities/utility/utility.erased.type/erased_type.pass.cpp @@ -13,8 +13,5 @@ int main() { -#if _LIBCPP_STD_VER > 11 - using std::experimental::erased_type; - constexpr erased_type e{}; -#endif + std::experimental::erased_type e(); } Index: test/experimental/utilities/utility/utility.synop/includes.pass.cpp =================================================================== --- test/experimental/utilities/utility/utility.synop/includes.pass.cpp +++ test/experimental/utilities/utility/utility.synop/includes.pass.cpp @@ -11,11 +11,10 @@ #include +#ifndef _LIBCPP_UTILITY +# error " must include " +#endif + int main() { -#if _LIBCPP_STD_VER > 11 -# ifndef _LIBCPP_UTILITY -# error " must include " -# endif -#endif /* _LIBCPP_STD_VER > 11 */ }