[ox/claw] Remove temporary assert that was placed for debugging

This commit is contained in:
Gary Talent 2022-11-30 20:47:28 -06:00
parent 3abcd0af8f
commit 1839b68a4a

View File

@ -15,7 +15,6 @@ namespace ox {
Result<ClawHeader> 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;