[studio] Rename caseInsensitiveEquals to caseInsensitiveStrCmp
Build / build (push) Successful in 1m9s

This commit is contained in:
2026-05-17 15:56:14 -05:00
parent de859bef77
commit 6cc6e9e7ed
@@ -36,9 +36,9 @@ static void printUsage() noexcept {
[[nodiscard]] [[nodiscard]]
static constexpr ox::Result<ox::ClawFormat> getFmt(ox::StringViewCR fmtStr) noexcept { static constexpr ox::Result<ox::ClawFormat> getFmt(ox::StringViewCR fmtStr) noexcept {
if (caseInsensitiveEquals(fmtStr, "mc") == 0) { if (caseInsensitiveStrCmp(fmtStr, "mc") == 0) {
return ox::ClawFormat::Metal; return ox::ClawFormat::Metal;
} else if (caseInsensitiveEquals(fmtStr, "oc") == 0) { } else if (caseInsensitiveStrCmp(fmtStr, "oc") == 0) {
return ox::ClawFormat::Organic; return ox::ClawFormat::Organic;
} }
return ox::Error{1, "invalid format"}; return ox::Error{1, "invalid format"};