X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/f95d2598051e347460e028286ff2d33e5825e548..56f57e5b36301ac84c1ca5d4eb7fa363f79c81f6:/Output.cpp diff --git a/Output.cpp b/Output.cpp index 4c4376a..467825c 100644 --- a/Output.cpp +++ b/Output.cpp @@ -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_; }