From de859bef77aa15166dc2f250ddfbd327d2c53214 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 17 May 2026 15:55:35 -0500 Subject: [PATCH] [ox/std] Rename caseInsensitiveEquals to caseInsensitiveStrCmp --- deps/oxlib/src/std/include/ox/std/strops.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]);