From bf1fd02cefe505592121eba4e2e00d1f4ddc60ac Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Tue, 10 Nov 2015 01:33:50 -0800 Subject: [PATCH] Upgrading to clang++-3.7 found infinite recursion. --- Output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Output.cpp b/Output.cpp index a6f80bf..12c72df 100644 --- a/Output.cpp +++ b/Output.cpp @@ -249,7 +249,7 @@ void CYDeclaration::Output(CYOutput &out, CYFlags flags) const { void CYForDeclarations::Output(CYOutput &out, CYFlags flags) const { out << "var"; - Output(out, CYRight(flags)); + declarations_->Output(out, CYRight(flags)); } void CYDeclarations::Output(CYOutput &out) const { -- 2.49.0