From 068fc9b88cabadc2c70140f13db5822b612926c8 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Fri, 6 Jun 2014 22:26:37 -0700 Subject: [PATCH] Output argument list names compatible with Swift. --- Output.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Output.cpp b/Output.cpp index 6022514..3794c49 100644 --- a/Output.cpp +++ b/Output.cpp @@ -118,8 +118,7 @@ void CYArgument::Output(CYOutput &out) const { if (value_ != NULL) value_->Output(out, CYAssign::Precedence_, CYNoFlags); if (next_ != NULL) { - if (next_->name_ == NULL) - out << ','; + out << ','; out << ' ' << *next_; } } -- 2.47.2