Remove constexpr test from sv_construct_test

This commit is contained in:
Peter Dimov 2024-02-07 06:34:06 +02:00
parent c4bb59617c
commit 76401063a6

View File

@ -30,11 +30,6 @@ template<class It> std::reverse_iterator<It> make_reverse_iterator( It it )
return std::reverse_iterator<It>( 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()
{
{