Skip to content

Commit

Permalink
Added change to make compile happy on MacOS 10.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
egall committed May 5, 2017
1 parent b0f2a5c commit 0489c99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsolidity/analysis/PostTypeChecker.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class PostTypeChecker: private ASTConstVisitor

VariableDeclaration const* findCycle(
VariableDeclaration const* _startingFrom,
std::set<VariableDeclaration const*> const& _seen = {}
std::set<VariableDeclaration const*> const& _seen = std::set<VariableDeclaration const*>{}
);

ErrorList& m_errors;
Expand Down

0 comments on commit 0489c99

Please sign in to comment.