Transpile arguments correctly in Target.hpp

Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
Username404 2022-03-19 13:09:46 +01:00
parent ba14e95d50
commit 3a75531664
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ public:
make_task(StandardComponents::Call,
const auto print_functions = printFunctions();
output << ((parseComponent.name == "print") ? print_functions.first : (parseComponent.name == "print_line") ? print_functions.second : parseComponent.name) << '(';
transpileTree(parseComponent);
separate_transpileTree(parseComponent, ", ");
output << ')';
)
}));