From 76401063a601f74d752ed26736c4466f693b068e Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 7 Feb 2024 06:34:06 +0200 Subject: [PATCH] Remove constexpr test from sv_construct_test --- test/sv_construct_test.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/sv_construct_test.cpp b/test/sv_construct_test.cpp index b8d42a0..3da015b 100644 --- a/test/sv_construct_test.cpp +++ b/test/sv_construct_test.cpp @@ -30,11 +30,6 @@ template std::reverse_iterator make_reverse_iterator( It it ) return std::reverse_iterator( it ); } -// Verify that the constructor from std::string_view can be called in a constexpr context -#if !defined(BOOST_NO_CXX17_HDR_STRING_VIEW) -static_assert(!boost::core::string_view(std::string_view("abc", 3)).empty()); -#endif - int main() { {