diff options
author | chriseth <c@ethdev.com> | 2015-05-04 22:50:30 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-05-04 22:50:30 +0800 |
commit | a9d5cba6b2c6a5ce8ec6e898e4e7291958544661 (patch) | |
tree | 8406b30e571a2b5ebd722de7f6402ff1a81d3f5d /CommandLineInterface.cpp | |
parent | e78be5f4be99c0ecef4d8984dba329dc01da03b6 (diff) | |
download | dexon-solidity-a9d5cba6b2c6a5ce8ec6e898e4e7291958544661.tar dexon-solidity-a9d5cba6b2c6a5ce8ec6e898e4e7291958544661.tar.gz dexon-solidity-a9d5cba6b2c6a5ce8ec6e898e4e7291958544661.tar.bz2 dexon-solidity-a9d5cba6b2c6a5ce8ec6e898e4e7291958544661.tar.lz dexon-solidity-a9d5cba6b2c6a5ce8ec6e898e4e7291958544661.tar.xz dexon-solidity-a9d5cba6b2c6a5ce8ec6e898e4e7291958544661.tar.zst dexon-solidity-a9d5cba6b2c6a5ce8ec6e898e4e7291958544661.zip |
Removed layouting space.
Diffstat (limited to 'CommandLineInterface.cpp')
-rw-r--r-- | CommandLineInterface.cpp | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/CommandLineInterface.cpp b/CommandLineInterface.cpp index 0b5e046d..0d5f4724 100644 --- a/CommandLineInterface.cpp +++ b/CommandLineInterface.cpp @@ -51,20 +51,18 @@ namespace dev namespace solidity { -// LTODO: Maybe some argument class pairing names with -// extensions and other attributes would be a better choice here? -static string const g_argAbiStr = "json-abi"; -static string const g_argSolAbiStr = "sol-abi"; +static string const g_argAbiStr = "json-abi"; +static string const g_argSolAbiStr = "sol-abi"; static string const g_argSignatureHashes = "hashes"; -static string const g_argAsmStr = "asm"; -static string const g_argAsmJsonStr = "asm-json"; -static string const g_argAstStr = "ast"; -static string const g_argAstJson = "ast-json"; -static string const g_argBinaryStr = "binary"; -static string const g_argOpcodesStr = "opcodes"; -static string const g_argNatspecDevStr = "natspec-dev"; +static string const g_argAsmStr = "asm"; +static string const g_argAsmJsonStr = "asm-json"; +static string const g_argAstStr = "ast"; +static string const g_argAstJson = "ast-json"; +static string const g_argBinaryStr = "binary"; +static string const g_argOpcodesStr = "opcodes"; +static string const g_argNatspecDevStr = "natspec-dev"; static string const g_argNatspecUserStr = "natspec-user"; -static string const g_argAddStandard = "add-std"; +static string const g_argAddStandard = "add-std"; /// Possible arguments to for --combined-json static set<string> const g_combinedJsonArgs{ |