diff options
author | chriseth <chris@ethereum.org> | 2018-09-17 23:47:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 23:47:35 +0800 |
commit | 47b8d998d13ad7365a897fc52496bf5fa1222040 (patch) | |
tree | 528418efe63f8ac3de9c1c2d7cba9b903440f002 /libsolidity/interface | |
parent | da90bc02247dbd500de191135322474e34c5874c (diff) | |
parent | 808c3f3df58d32c5d6056ece7da23db41d617c2b (diff) | |
download | dexon-solidity-47b8d998d13ad7365a897fc52496bf5fa1222040.tar dexon-solidity-47b8d998d13ad7365a897fc52496bf5fa1222040.tar.gz dexon-solidity-47b8d998d13ad7365a897fc52496bf5fa1222040.tar.bz2 dexon-solidity-47b8d998d13ad7365a897fc52496bf5fa1222040.tar.lz dexon-solidity-47b8d998d13ad7365a897fc52496bf5fa1222040.tar.xz dexon-solidity-47b8d998d13ad7365a897fc52496bf5fa1222040.tar.zst dexon-solidity-47b8d998d13ad7365a897fc52496bf5fa1222040.zip |
Merge pull request #4999 from liangdzou/fix_typo
fix some code format problems
Diffstat (limited to 'libsolidity/interface')
-rw-r--r-- | libsolidity/interface/CompilerStack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/interface/CompilerStack.cpp b/libsolidity/interface/CompilerStack.cpp index e800b278..adf59a9c 100644 --- a/libsolidity/interface/CompilerStack.cpp +++ b/libsolidity/interface/CompilerStack.cpp @@ -128,7 +128,7 @@ bool CompilerStack::addSource(string const& _name, string const& _content, bool bool CompilerStack::parse() { //reset - if(m_stackState != SourcesSet) + if (m_stackState != SourcesSet) return false; m_errorReporter.clear(); ASTNode::resetID(); |