diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-08-15 22:58:01 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-08-19 22:34:50 +0800 |
commit | e00f802f725e284af453d70a48d450a4d5c9925e (patch) | |
tree | 26e5ef14ebbd9a47dbf6cd5e5ed95d2dba9776a0 /solc/CommandLineInterface.cpp | |
parent | 64cec9793a881e5a8ee77cb73e3f3599f330c044 (diff) | |
download | dexon-solidity-e00f802f725e284af453d70a48d450a4d5c9925e.tar.gz dexon-solidity-e00f802f725e284af453d70a48d450a4d5c9925e.tar.zst dexon-solidity-e00f802f725e284af453d70a48d450a4d5c9925e.zip |
Remove standard contracts
Diffstat (limited to 'solc/CommandLineInterface.cpp')
-rw-r--r-- | solc/CommandLineInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index 08c08797..fbef56f0 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -560,7 +560,7 @@ bool CommandLineInterface::processInput() } }; - m_compiler.reset(new CompilerStack(m_args.count(g_argAddStandard) > 0, fileReader)); + m_compiler.reset(new CompilerStack(fileReader)); auto scannerFromSourceName = [&](string const& _sourceName) -> solidity::Scanner const& { return m_compiler->scanner(_sourceName); }; try { |