From 3abbb8d625bd3a904c54dfda7558a77d5543ac70 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. --- CompilerStack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CompilerStack.h b/CompilerStack.h index 8f77ef68a..812f41863 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 = 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.