We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c37dee commit 7b564d8Copy full SHA for 7b564d8
test/static_string.cpp
@@ -919,14 +919,14 @@ testElements()
919
BOOST_TEST(std::memcmp(
920
s.c_str(), "123\0", 4) == 0);
921
}
922
-#ifdef BOOST_STATIC_ASSERT_HAS_STRING_VIEW
+#ifdef BOOST_STATIC_STRING_HAS_STRING_VIEW
923
{
924
static_string<3> s("123");
925
string_view sv = s;
926
BOOST_TEST(static_string<5>(sv) == "123");
927
928
#endif
929
-#ifdef BOOST_STATIC_ASSERT_HAS_STD_STRING_VIEW
+#ifdef BOOST_STATIC_STRING_HAS_STD_STRING_VIEW
930
931
932
std::string_view sv = s;
0 commit comments