diff options
author | liangdzou <liang.d.zou@gmail.com> | 2018-09-20 17:41:59 +0800 |
---|---|---|
committer | liangdzou <liang.d.zou@gmail.com> | 2018-09-20 17:41:59 +0800 |
commit | 6f7ff2dcd4e4cc83a76c8e79993682408da0b774 (patch) | |
tree | 6ad59840d46ef307823b76b822d0f96671b94d23 /solc | |
parent | 5f919d02abc21e17d533a18876eabdf1a91939f7 (diff) | |
download | dexon-solidity-6f7ff2dcd4e4cc83a76c8e79993682408da0b774.tar dexon-solidity-6f7ff2dcd4e4cc83a76c8e79993682408da0b774.tar.gz dexon-solidity-6f7ff2dcd4e4cc83a76c8e79993682408da0b774.tar.bz2 dexon-solidity-6f7ff2dcd4e4cc83a76c8e79993682408da0b774.tar.lz dexon-solidity-6f7ff2dcd4e4cc83a76c8e79993682408da0b774.tar.xz dexon-solidity-6f7ff2dcd4e4cc83a76c8e79993682408da0b774.tar.zst dexon-solidity-6f7ff2dcd4e4cc83a76c8e79993682408da0b774.zip |
fix format issue for source files
Diffstat (limited to 'solc')
-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 a43e789e..8fd0d6ef 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -736,7 +736,8 @@ bool CommandLineInterface::processInput() if (m_args.count(g_argAllowPaths)) { vector<string> paths; - for (string const& path: boost::split(paths, m_args[g_argAllowPaths].as<string>(), boost::is_any_of(","))) { + for (string const& path: boost::split(paths, m_args[g_argAllowPaths].as<string>(), boost::is_any_of(","))) + { auto filesystem_path = boost::filesystem::path(path); // If the given path had a trailing slash, the Boost filesystem // path will have it's last component set to '.'. This breaks |