diff options
author | Christian <c@ethdev.com> | 2015-01-29 08:29:43 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-01-29 08:29:43 +0800 |
commit | 1d437b50833fbe17a1056fd85bfcbc6dc85abf52 (patch) | |
tree | 63667dd121c0ec97fcad653683fbba249a57aa17 /CompilerStack.h | |
parent | b5a786dda19e54fa587b1b693e7a139818d65b9e (diff) | |
download | dexon-solidity-1d437b50833fbe17a1056fd85bfcbc6dc85abf52.tar dexon-solidity-1d437b50833fbe17a1056fd85bfcbc6dc85abf52.tar.gz dexon-solidity-1d437b50833fbe17a1056fd85bfcbc6dc85abf52.tar.bz2 dexon-solidity-1d437b50833fbe17a1056fd85bfcbc6dc85abf52.tar.lz dexon-solidity-1d437b50833fbe17a1056fd85bfcbc6dc85abf52.tar.xz dexon-solidity-1d437b50833fbe17a1056fd85bfcbc6dc85abf52.tar.zst dexon-solidity-1d437b50833fbe17a1056fd85bfcbc6dc85abf52.zip |
Exclude standard contracts by default.
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 cae0f4e2..7ad3405e 100644 --- a/CompilerStack.h +++ b/CompilerStack.h @@ -60,7 +60,7 @@ class CompilerStack: boost::noncopyable { public: /// Creates a new compiler stack. Adds standard sources if @a _addStandardSources. - explicit CompilerStack(bool _addStandardSources = true); + explicit CompilerStack(bool _addStandardSources = false); /// Adds a source object (e.g. file) to the parser. After this, parse has to be called again. /// @returns true if a source object by the name already existed and was replaced. |