diff --git a/src/sfizz/Opcode.cpp b/src/sfizz/Opcode.cpp index f0b862b6..1ee0f1c9 100644 --- a/src/sfizz/Opcode.cpp +++ b/src/sfizz/Opcode.cpp @@ -27,7 +27,7 @@ sfz::Opcode::Opcode(absl::string_view inputOpcode, absl::string_view inputValue) hasBackParameter = (nextCharIndex == opcode.npos); const auto numDigits = hasBackParameter ? opcode.npos : nextCharIndex - nextNumIndex; if (absl::SimpleAtoi(opcode.substr(nextNumIndex, numDigits), &returnedValue)) { - ASSERT(returnedValue < std::numeric_limits::max()); + // ASSERT(returnedValue < std::numeric_limits::max()); parameterPositions.push_back(parameterPosition); parameters.push_back(returnedValue); }