Browse Source

Merge pull request #1116 from chriseth/sol_activateStandardSources

Activate standard sources by default.
cl-refactor
Gav Wood 10 years ago
parent
commit
a80d81ad0a
  1. 2
      libsolidity/CompilerStack.h

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

Loading…
Cancel
Save