diff options
author | Zachary Turner <zturner@google.com> | 2014-07-09 16:31:49 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2014-07-09 16:31:49 +0000 |
commit | d37221dc5d819d63dbe35ab9a2d60e73cbd52dbd (patch) | |
tree | 6339714ffc3c7c219f05ea19006d3da691a87753 /lldb/source/Commands/CommandObjectArgs.cpp | |
parent | c5626f4444490d2e7a5f2cf950bf2f469c9de3f3 (diff) | |
download | llvm-d37221dc5d819d63dbe35ab9a2d60e73cbd52dbd.zip llvm-d37221dc5d819d63dbe35ab9a2d60e73cbd52dbd.tar.gz llvm-d37221dc5d819d63dbe35ab9a2d60e73cbd52dbd.tar.bz2 |
Revert "Fix broken tests due to new error output."
This reverts commit ec7c94f8e6860968d384b578e5564a9c55c80b4a and
re-enables OptionValidators.
llvm-svn: 212627
Diffstat (limited to 'lldb/source/Commands/CommandObjectArgs.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectArgs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectArgs.cpp b/lldb/source/Commands/CommandObjectArgs.cpp index e834298..b0fe42b 100644 --- a/lldb/source/Commands/CommandObjectArgs.cpp +++ b/lldb/source/Commands/CommandObjectArgs.cpp @@ -260,7 +260,7 @@ CommandObjectArgs::DoExecute (Args& args, CommandReturnObject &result) OptionDefinition CommandObjectArgs::CommandOptions::g_option_table[] = { - { LLDB_OPT_SET_1, false, "debug", 'g', OptionParser::eNoArgument, NULL, 0, eArgTypeNone, "Enable verbose debug logging of the expression parsing and evaluation."}, - { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL } + { LLDB_OPT_SET_1, false, "debug", 'g', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Enable verbose debug logging of the expression parsing and evaluation."}, + { 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL } }; |