1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:07:45 +00:00

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
parent 052004f92d
commit 5089fd8b3c

View file

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