LibRegex: Also print a newline after each debug line

Otherwise the new debug line would be printed right after the previous
one without a newline.
This commit is contained in:
Ali Mohammad Pur 2021-07-18 00:22:27 +04:30 committed by Ali Mohammad Pur
commit 5089fd8b3c
Notes: sideshowbarker 2024-07-18 08:47:45 +09:00

View file

@ -82,7 +82,7 @@ public:
builder.appendff(", next ip: {}", state.instruction_position + opcode.size());
}
out(m_file, " | {:20}", builder.to_string());
outln(m_file, " | {:20}", builder.to_string());
if (is<OpCode_Compare>(opcode)) {
for (auto& line : to<OpCode_Compare>(opcode).variable_arguments_to_string(input)) {