diff options
author | chriseth <chris@ethereum.org> | 2016-12-11 23:40:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-11 23:40:21 +0800 |
commit | f2c5ab0cb91af4944c79aea2703f14e0ec672db9 (patch) | |
tree | 7d80877b96c41460fe4ec94ede488af0ed8261d4 | |
parent | 0e9b72725e71e5a6a27cef403d09db894dc9ab56 (diff) | |
parent | dac95ce39814e20cd86e5d759ae046b011ab11c1 (diff) | |
download | dexon-solidity-f2c5ab0cb91af4944c79aea2703f14e0ec672db9.tar.gz dexon-solidity-f2c5ab0cb91af4944c79aea2703f14e0ec672db9.tar.zst dexon-solidity-f2c5ab0cb91af4944c79aea2703f14e0ec672db9.zip |
Merge pull request #1496 from federicobond/remove-unused-var
Remove unused variable inputFiles
-rw-r--r-- | solc/CommandLineInterface.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index 6e59099a..c83432ca 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -325,7 +325,6 @@ void CommandLineInterface::handleFormal() void CommandLineInterface::readInputFilesAndConfigureRemappings() { - vector<string> inputFiles; bool addStdin = false; if (!m_args.count("input-file")) addStdin = true; |