diff options
author | liangdzou <liang.d.zou@gmail.com> | 2018-09-19 00:04:11 +0800 |
---|---|---|
committer | liangdzou <liang.d.zou@gmail.com> | 2018-09-19 00:18:49 +0800 |
commit | 24e5dcc352e9ce9569138dfa5af96fbf72ad3604 (patch) | |
tree | 120d53d90a32122485ada000bcebe4f3a0795c3c /solc/CommandLineInterface.cpp | |
parent | c42dfc5b1083a0d49c64a6e3cbe2d3f220d1f519 (diff) | |
download | dexon-solidity-24e5dcc352e9ce9569138dfa5af96fbf72ad3604.tar dexon-solidity-24e5dcc352e9ce9569138dfa5af96fbf72ad3604.tar.gz dexon-solidity-24e5dcc352e9ce9569138dfa5af96fbf72ad3604.tar.bz2 dexon-solidity-24e5dcc352e9ce9569138dfa5af96fbf72ad3604.tar.lz dexon-solidity-24e5dcc352e9ce9569138dfa5af96fbf72ad3604.tar.xz dexon-solidity-24e5dcc352e9ce9569138dfa5af96fbf72ad3604.tar.zst dexon-solidity-24e5dcc352e9ce9569138dfa5af96fbf72ad3604.zip |
fix code format problems
Diffstat (limited to 'solc/CommandLineInterface.cpp')
-rw-r--r-- | solc/CommandLineInterface.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index f7d1c748..a43e789e 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -742,7 +742,8 @@ bool CommandLineInterface::processInput() // path will have it's last component set to '.'. This breaks // path comparison in later parts of the code, so we need to strip // it. - if (filesystem_path.filename() == ".") { + if (filesystem_path.filename() == ".") + { filesystem_path.remove_filename(); } m_allowedDirectories.push_back(filesystem_path); |