fix(t6): vectortoangles (#171)

This commit is contained in:
Xenxo Espasandín 2024-01-05 16:10:06 +01:00 committed by GitHub
parent 4806a285b6
commit fb755ef937
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1377,7 +1377,7 @@ auto source::dump_expr_angleclamp180(expr_angleclamp180 const& exp) -> void
auto source::dump_expr_vectortoangles(expr_vectortoangles const& exp) -> void
{
fmt::format_to(std::back_inserter(buf_), "vectorangles( ");
fmt::format_to(std::back_inserter(buf_), "vectortoangles( ");
dump_expr(*exp.arg);
fmt::format_to(std::back_inserter(buf_), " )");
}