fix(gsc): wait dump (#68)

This commit is contained in:
Xenxo Espasandín 2023-02-13 22:48:10 +01:00 committed by GitHub
parent 64bb892778
commit 5fbb0cea7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -596,9 +596,9 @@ auto source::dump_stmt_wait(stmt_wait const& stm) -> void
}
else
{
fmt::format_to(std::back_inserter(buf_), "wait(");
fmt::format_to(std::back_inserter(buf_), "wait( ");
dump_expr(stm.time);
fmt::format_to(std::back_inserter(buf_), ");");
fmt::format_to(std::back_inserter(buf_), " );");
}
}