From 6883e38573aba0d09660fc3a1fabbb2adbc46e8f Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 26 Nov 2024 22:38:44 +0100 Subject: [PATCH] fix: compilation fixed after the previous commit --- src/core/include/mp-units/framework/symbol_text.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/include/mp-units/framework/symbol_text.h b/src/core/include/mp-units/framework/symbol_text.h index 4d6add47f..faef17bbd 100644 --- a/src/core/include/mp-units/framework/symbol_text.h +++ b/src/core/include/mp-units/framework/symbol_text.h @@ -66,7 +66,7 @@ constexpr bool is_basic_literal_character_set_char(char ch) template constexpr bool is_basic_literal_character_set(InputIt begin, InputIt end) noexcept { - return detail::all_of(begin, end, is_basic_literal_character_set_char); + return all_of(begin, end, is_basic_literal_character_set_char); } template @@ -78,7 +78,7 @@ constexpr bool is_basic_literal_character_set(const char (&txt)[N]) noexcept template constexpr fixed_u8string to_u8string(fixed_string txt) { - MP_UNITS_EXPECTS(detail::is_basic_literal_character_set(txt)); + MP_UNITS_EXPECTS(is_basic_literal_character_set(txt)); return std::bit_cast>(txt); }