aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2015-01-29 17:41:04 +0800
committerchriseth <c@ethdev.com>2015-01-29 17:41:04 +0800
commitc568df4a03be54fe434051c9cde0cbb901f78aa5 (patch)
tree0f08d4215b04b8874c81ecb3fb8f287931e3809b
parent6ec9586de3ce96fafd3c9c7c6318e13f784e8d8f (diff)
parent1d437b50833fbe17a1056fd85bfcbc6dc85abf52 (diff)
downloaddexon-solidity-c568df4a03be54fe434051c9cde0cbb901f78aa5.tar
dexon-solidity-c568df4a03be54fe434051c9cde0cbb901f78aa5.tar.gz
dexon-solidity-c568df4a03be54fe434051c9cde0cbb901f78aa5.tar.bz2
dexon-solidity-c568df4a03be54fe434051c9cde0cbb901f78aa5.tar.lz
dexon-solidity-c568df4a03be54fe434051c9cde0cbb901f78aa5.tar.xz
dexon-solidity-c568df4a03be54fe434051c9cde0cbb901f78aa5.tar.zst
dexon-solidity-c568df4a03be54fe434051c9cde0cbb901f78aa5.zip
Merge pull request #887 from chriseth/sol_excludeStd
Exclude standard contracts by default.
-rw-r--r--CompilerStack.h2
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.