From f2f1e0300793ea5686a4ad1c5c46b9e454c01bdc Mon Sep 17 00:00:00 2001 From: subtly Date: Thu, 16 Jul 2015 15:04:25 -0400 Subject: [PATCH] Fix for compiling w/xcode on 10.9 Been manually patching this -- submitting fix to resolve #2451. --- AST.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AST.cpp b/AST.cpp index 5b85989b9..ee6e52250 100644 --- a/AST.cpp +++ b/AST.cpp @@ -503,7 +503,7 @@ void StructDefinition::checkRecursion() const ); } }; - check(this, {}); + check(this, StructPointersSet{}); } TypePointer EnumDefinition::getType(ContractDefinition const*) const