Merge pull request #2246 from egalleye/develop

Added change to make compile happy on MacOS 10.9.5
This commit is contained in:
Alex Beregszaszi 2017-05-06 10:41:22 +01:00 committed by GitHub
commit a09ee1ceae

View File

@ -55,7 +55,7 @@ private:
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;