]> git.saurik.com Git - cycript.git/blobdiff - Output.cpp
Fix object reference comparisons (and remove nil).
[cycript.git] / Output.cpp
index 4c4376a7fd549f0d03281f7aa7235fb2b96b544c..467825cfdfeeaf5230cca96495752b45d3aea769 100644 (file)
@@ -329,6 +329,10 @@ void CYExpression::Output(CYOutput &out, int precedence, CYFlags flags) const {
         Output(out, flags);
 }
 
+void CYExternal::Output(CYOutput &out, CYFlags flags) const {
+    out << "extern" << abi_ << typed_ << ';';
+}
+
 void CYFatArrow::Output(CYOutput &out, CYFlags flags) const {
     out << '(' << parameters_ << ')' << ' ' << "=>" << ' ' << code_;
 }