From b556adb897f18e500bb4d8f89c81c0f0764f1ff2 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Wed, 7 Sep 2022 14:55:03 -0400 Subject: add upstream 11.25 --- zen/string_tools.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zen/string_tools.h') diff --git a/zen/string_tools.h b/zen/string_tools.h index cafff3d5..181a3951 100644 --- a/zen/string_tools.h +++ b/zen/string_tools.h @@ -263,7 +263,7 @@ bool equalString(const S& lhs, const T& rhs) template inline bool equalAsciiNoCase(const S& lhs, const T& rhs) { - assert(isAsciiString(lhs) || isAsciiString(rhs)); + //assert(isAsciiString(lhs) || isAsciiString(rhs)); const size_t lhsLen = strLength(lhs); return lhsLen == strLength(rhs) && impl::strcmpAsciiNoCase(strBegin(lhs), strBegin(rhs), lhsLen) == std::weak_ordering::equivalent; } -- cgit