We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64c84a4 commit 8046463Copy full SHA for 8046463
source/to_cpp1.h
@@ -3896,13 +3896,13 @@ class cppfront
3896
3897
auto first = true;
3898
for (auto const& arg : n.arguments) {
3899
+ if (!first) {
3900
+ printer.print_cpp2(", ", n.position());
3901
+ }
3902
+ first = false;
3903
if (auto x_ = std::get_if<expression_list_node::term::expression>(&arg.argument))
3904
{
3905
auto& x = **x_;
- if (!first) {
- printer.print_cpp2(", ", n.position());
- }
- first = false;
3906
auto is_out = false;
3907
3908
if (x.pass != passing_style::in) {
0 commit comments