From 1d437b50833fbe17a1056fd85bfcbc6dc85abf52 Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 29 Jan 2015 01:29:43 +0100 Subject: [PATCH] Exclude standard contracts by default. --- CompilerStack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CompilerStack.h b/CompilerStack.h index cae0f4e27..7ad3405e1 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.