diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-17 07:17:38 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-17 07:17:38 +0800 |
commit | a6fd19c8f30f3bb46cd66d5ed810017dab95e51c (patch) | |
tree | 2103742b9e4944f037ab71fe967d79dfdb00c83b /CommandLineInterface.cpp | |
parent | dfff5810578a582c286e05f7634bea1fe0587799 (diff) | |
download | dexon-solidity-a6fd19c8f30f3bb46cd66d5ed810017dab95e51c.tar dexon-solidity-a6fd19c8f30f3bb46cd66d5ed810017dab95e51c.tar.gz dexon-solidity-a6fd19c8f30f3bb46cd66d5ed810017dab95e51c.tar.bz2 dexon-solidity-a6fd19c8f30f3bb46cd66d5ed810017dab95e51c.tar.lz dexon-solidity-a6fd19c8f30f3bb46cd66d5ed810017dab95e51c.tar.xz dexon-solidity-a6fd19c8f30f3bb46cd66d5ed810017dab95e51c.tar.zst dexon-solidity-a6fd19c8f30f3bb46cd66d5ed810017dab95e51c.zip |
better alignment of global string constants
Diffstat (limited to 'CommandLineInterface.cpp')
-rw-r--r-- | CommandLineInterface.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/CommandLineInterface.cpp b/CommandLineInterface.cpp index fd660a0c..81dd25ec 100644 --- a/CommandLineInterface.cpp +++ b/CommandLineInterface.cpp @@ -50,13 +50,13 @@ 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 = "abi"; -static string const g_argAsmStr = "asm"; -static string const g_argAstStr = "ast"; -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_argAbiStr = "abi"; +static string const g_argAsmStr = "asm"; +static string const g_argAstStr = "ast"; +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 void version() { |