diff --git a/src/String/BasicStringView.hpp b/src/String/BasicStringView.hpp index 7ee8876..62cc132 100644 --- a/src/String/BasicStringView.hpp +++ b/src/String/BasicStringView.hpp @@ -20,7 +20,7 @@ namespace ArbUt { return _hash == rhs._hash; } inline constexpr bool operator!=(const BasicStringView& rhs) const noexcept { return _hash != rhs._hash; } - inline constexpr bool Empty() const noexcept { return Length() == 0; } + inline constexpr bool IsEmpty() const noexcept { return Length() == 0; } [[nodiscard]] virtual constexpr const char* c_str() const noexcept = 0; [[nodiscard]] virtual constexpr std::string_view std_str() const noexcept = 0;