mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
CompilerStack: Fix style on local variable name
This commit is contained in:
parent
13a9d21d88
commit
e27afe93a9
@ -341,9 +341,9 @@ bool CompilerStack::analyze()
|
|||||||
if (source->ast && !syntaxChecker.checkSyntax(*source->ast))
|
if (source->ast && !syntaxChecker.checkSyntax(*source->ast))
|
||||||
noErrors = false;
|
noErrors = false;
|
||||||
|
|
||||||
DocStringTagParser DocStringTagParser(m_errorReporter);
|
DocStringTagParser docStringTagParser(m_errorReporter);
|
||||||
for (Source const* source: m_sourceOrder)
|
for (Source const* source: m_sourceOrder)
|
||||||
if (source->ast && !DocStringTagParser.parseDocStrings(*source->ast))
|
if (source->ast && !docStringTagParser.parseDocStrings(*source->ast))
|
||||||
noErrors = false;
|
noErrors = false;
|
||||||
|
|
||||||
m_globalContext = make_shared<GlobalContext>();
|
m_globalContext = make_shared<GlobalContext>();
|
||||||
|
Loading…
Reference in New Issue
Block a user