diff --git a/test/compile_fail.hpp b/test/compile_fail.hpp index 912f885..9a8c279 100644 --- a/test/compile_fail.hpp +++ b/test/compile_fail.hpp @@ -4,10 +4,8 @@ #include -namespace boost -{ -namespace static_string -{ +namespace boost { +namespace static_strings { static_assert(std::is_base_of< detail::static_string_base_zero<0, char, std::char_traits>, diff --git a/test/constexpr_tests.hpp b/test/constexpr_tests.hpp index 539ebaa..20ebff2 100644 --- a/test/constexpr_tests.hpp +++ b/test/constexpr_tests.hpp @@ -36,7 +36,7 @@ struct cxper_char_traits #else using cxper_char_traits = std::char_traits; #endif -using cstatic_string = boost::static_string::basic_static_string<50, char, cxper_char_traits>; +using cstatic_string = boost::static_strings::basic_static_string<50, char, cxper_char_traits>; inline constexpr diff --git a/test/static_string.cpp b/test/static_string.cpp index 63796ff..4e001b8 100644 --- a/test/static_string.cpp +++ b/test/static_string.cpp @@ -21,7 +21,7 @@ #include namespace boost { -namespace static_string { +namespace static_strings { using string_view = basic_string_view>; @@ -7194,5 +7194,5 @@ runTests() int main() { - return boost::static_string::runTests(); + return boost::static_strings::runTests(); } \ No newline at end of file