From: Jay Freeman (saurik) Date: Sat, 7 Jun 2014 05:26:37 +0000 (-0700) Subject: Output argument list names compatible with Swift. X-Git-Tag: v0.9.502~10 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/068fc9b88cabadc2c70140f13db5822b612926c8 Output argument list names compatible with Swift. --- 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_; } }