diff options
author | chriseth <c@ethdev.com> | 2015-04-22 20:33:38 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-04-22 20:33:38 +0800 |
commit | ff39a1d2415d95a8f577e22bc3b5b304420dba85 (patch) | |
tree | 472e21ead3c6c88b4cf110f393b85101e374878e /CompilerStack.h | |
parent | c41eb1400047d67bf4f52834ed817b558f16cc90 (diff) | |
parent | 88239460bb24f0c7d3f44715c69e012d53bff7ea (diff) | |
download | dexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.tar dexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.tar.gz dexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.tar.bz2 dexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.tar.lz dexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.tar.xz dexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.tar.zst dexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.zip |
Merge pull request #1708 from chriseth/sol_fix_libraries
Fixed use of libraries.
Diffstat (limited to 'CompilerStack.h')
-rw-r--r-- | CompilerStack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CompilerStack.h b/CompilerStack.h index 6f90a846..7d919862 100644 --- a/CompilerStack.h +++ b/CompilerStack.h @@ -141,7 +141,7 @@ private: std::shared_ptr<SourceUnit> ast; std::string interface; bool isLibrary = false; - void reset() { scanner.reset(); ast.reset(); interface.clear(); isLibrary = false;} + void reset() { scanner.reset(); ast.reset(); interface.clear(); } }; struct Contract |