Merge pull request #887 from chriseth/sol_excludeStd

Exclude standard contracts by default.
This commit is contained in:
chriseth 2015-01-29 10:41:04 +01:00
commit c568df4a03

View File

@ -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.