From 20c581c4f864b1c09eddb6a1dfdc199d68cbab6a Mon Sep 17 00:00:00 2001 From: Christian Date: Mon, 23 Feb 2015 16:28:18 +0100 Subject: [PATCH] Activate standard sources by default. --- libsolidity/CompilerStack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsolidity/CompilerStack.h b/libsolidity/CompilerStack.h index 8f77ef68a..812f41863 100644 --- a/libsolidity/CompilerStack.h +++ b/libsolidity/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 = false); + explicit CompilerStack(bool _addStandardSources = true); /// 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.