diff --git a/deps/oxlib/src/std/include/ox/std/strops.hpp b/deps/oxlib/src/std/include/ox/std/strops.hpp index 64a8aec0..33e2351a 100644 --- a/deps/oxlib/src/std/include/ox/std/strops.hpp +++ b/deps/oxlib/src/std/include/ox/std/strops.hpp @@ -42,7 +42,7 @@ constexpr char toUpper(char const c) noexcept { } [[nodiscard]] -constexpr int caseInsensitiveEquals(ox::StringViewCR a, ox::StringViewCR b) noexcept { +constexpr int caseInsensitiveStrCmp(StringViewCR a, StringViewCR b) noexcept { auto const sz = ox::min(a.size(), b.size()); for (size_t i{}; i < sz; ++i) { auto const ac = toUpper(a[i]);