diff options
author | chriseth <c@ethdev.com> | 2016-01-14 00:28:27 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-01-14 18:36:13 +0800 |
commit | 17199edb4f7011d062ae126f7910314ed490d2c7 (patch) | |
tree | 587d96287062220db712c326fec451b87c66ee02 /libsolidity/interface | |
parent | 2364c55735f8e511dbed6e46f83975a867839e12 (diff) | |
download | dexon-solidity-17199edb4f7011d062ae126f7910314ed490d2c7.tar.gz dexon-solidity-17199edb4f7011d062ae126f7910314ed490d2c7.tar.zst dexon-solidity-17199edb4f7011d062ae126f7910314ed490d2c7.zip |
Set error flag to true.
Diffstat (limited to 'libsolidity/interface')
-rw-r--r-- | libsolidity/interface/CompilerStack.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libsolidity/interface/CompilerStack.cpp b/libsolidity/interface/CompilerStack.cpp index 9a7d6982..aaff09ba 100644 --- a/libsolidity/interface/CompilerStack.cpp +++ b/libsolidity/interface/CompilerStack.cpp @@ -426,6 +426,7 @@ bool CompilerStack::checkLibraryNameClashes() )); m_errors.push_back(err); + clashFound = true; } else libraries[contract->name()] = contract->location(); |