From a3423674474fcc7f96733a8fa82ea31ef7c963f1 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Wed, 12 Jan 2022 09:58:06 -0800 Subject: [PATCH] Update BytecodeBuilder.cpp Remove comment --- Compiler/src/BytecodeBuilder.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Compiler/src/BytecodeBuilder.cpp b/Compiler/src/BytecodeBuilder.cpp index 3a0ef479..e6d02454 100644 --- a/Compiler/src/BytecodeBuilder.cpp +++ b/Compiler/src/BytecodeBuilder.cpp @@ -721,7 +721,6 @@ void BytecodeBuilder::writeLineInfo(std::string& ss) const for (size_t i = 0; i < lines.size(); ++i) { int delta = lines[i] - baseline[i >> logspan]; - // Check delta if is a valid byte value LUAU_ASSERT(delta >= 0 && delta <= 255); writeByte(ss, uint8_t(delta) - lastOffset);