Skip to content

Commit

Permalink
fix: compilation fixed after the previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mpusz committed Nov 26, 2024
1 parent 6bfcc3a commit 6883e38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/include/mp-units/framework/symbol_text.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ constexpr bool is_basic_literal_character_set_char(char ch)
template<std::size_t N, typename InputIt>
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<std::size_t N>
Expand All @@ -78,7 +78,7 @@ constexpr bool is_basic_literal_character_set(const char (&txt)[N]) noexcept
template<std::size_t N>
constexpr fixed_u8string<N> to_u8string(fixed_string<N> txt)
{
MP_UNITS_EXPECTS(detail::is_basic_literal_character_set(txt));
MP_UNITS_EXPECTS(is_basic_literal_character_set(txt));
return std::bit_cast<fixed_u8string<N>>(txt);
}

Expand Down

0 comments on commit 6883e38

Please sign in to comment.