diff options
author | Virgile Bello <virgile.bello@gmail.com> | 2013-09-05 16:42:23 +0000 |
---|---|---|
committer | Virgile Bello <virgile.bello@gmail.com> | 2013-09-05 16:42:23 +0000 |
commit | e2607b50ea6b6a651a3a640ed6ccf80f37fca182 (patch) | |
tree | 848082207b6646690b580b4fe252166ddbab9e0f /lldb/source/Interpreter/OptionGroupArchitecture.cpp | |
parent | f792acb20fd0233f2e5cf400ceabd4f2416db3b5 (diff) | |
download | bcm5719-llvm-e2607b50ea6b6a651a3a640ed6ccf80f37fca182.tar.gz bcm5719-llvm-e2607b50ea6b6a651a3a640ed6ccf80f37fca182.zip |
Add OptionParser.h
llvm-svn: 190063
Diffstat (limited to 'lldb/source/Interpreter/OptionGroupArchitecture.cpp')
-rw-r--r-- | lldb/source/Interpreter/OptionGroupArchitecture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/OptionGroupArchitecture.cpp b/lldb/source/Interpreter/OptionGroupArchitecture.cpp index af103bb0bd9..d8f35675fba 100644 --- a/lldb/source/Interpreter/OptionGroupArchitecture.cpp +++ b/lldb/source/Interpreter/OptionGroupArchitecture.cpp @@ -30,7 +30,7 @@ OptionGroupArchitecture::~OptionGroupArchitecture () static OptionDefinition g_option_table[] = { - { LLDB_OPT_SET_1 , false, "arch" , 'a', required_argument, NULL, 0, eArgTypeArchitecture , "Specify the architecture for the target."}, + { LLDB_OPT_SET_1 , false, "arch" , 'a', OptionParser::eRequiredArgument, NULL, 0, eArgTypeArchitecture , "Specify the architecture for the target."}, }; uint32_t |