From 1839b68a4a431a505770f773e0103f8d098be991 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Wed, 30 Nov 2022 20:47:28 -0600 Subject: [PATCH] [ox/claw] Remove temporary assert that was placed for debugging --- deps/ox/src/ox/claw/read.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/deps/ox/src/ox/claw/read.cpp b/deps/ox/src/ox/claw/read.cpp index 8a89f1dc..44c714d7 100644 --- a/deps/ox/src/ox/claw/read.cpp +++ b/deps/ox/src/ox/claw/read.cpp @@ -15,7 +15,6 @@ namespace ox { Result readClawHeader(const char *buff, std::size_t buffLen) noexcept { const auto s1End = ox_strchr(buff, ';', buffLen); if (!s1End) { - oxAssert(false, "fail"); return OxError(1, "Could not read Claw header"); } const auto s1Size = s1End - buff;