diff options
author | Filipe Cabecinhas <me@filcab.net> | 2012-09-11 18:11:07 +0000 |
---|---|---|
committer | Filipe Cabecinhas <me@filcab.net> | 2012-09-11 18:11:07 +0000 |
commit | b4cb0be3b723e181c1ff3c2d7715a1c39b8cfb9c (patch) | |
tree | 5a7c7e9b13fee8d82a9c94b3534620ebba52963e /lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp | |
parent | 4b963415c20bc38b5c0ae0fdbcfa4e94050ab150 (diff) | |
download | llvm-b4cb0be3b723e181c1ff3c2d7715a1c39b8cfb9c.zip llvm-b4cb0be3b723e181c1ff3c2d7715a1c39b8cfb9c.tar.gz llvm-b4cb0be3b723e181c1ff3c2d7715a1c39b8cfb9c.tar.bz2 |
Some more typing-related fixes.
llvm-svn: 163638
Diffstat (limited to 'lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp')
-rw-r--r-- | lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp b/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp index bf58dd2..2d734a1 100644 --- a/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp +++ b/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp @@ -42,7 +42,7 @@ g_option_table[] = { LLDB_OPT_SET_1, false, "no-summary-depth", 'Y', optional_argument, NULL, 0, eArgTypeCount, "Set the depth at which omitting summary information stops (default is 1)."}, { LLDB_OPT_SET_1, false, "raw-output", 'R', no_argument, NULL, 0, eArgTypeNone, "Don't use formatting options."}, { LLDB_OPT_SET_1, false, "show-all-children",'A', no_argument, NULL, 0, eArgTypeNone, "Ignore the upper bound on the number of children to show."}, - { 0, false, NULL, 0, 0, NULL, NULL, eArgTypeNone, NULL } + { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL } }; uint32_t |