diff options
author | Davide Italiano <ditaliano@apple.com> | 2019-10-29 13:05:56 -0700 |
---|---|---|
committer | Davide Italiano <ditaliano@apple.com> | 2019-10-29 13:05:56 -0700 |
commit | d46c65592e3ac6a78c54514e4919d505c1f0c74a (patch) | |
tree | 98e673abd179f87e5853349964b253420d8b08f6 | |
parent | 2460989eabb8adca4b7973aa23997b5ec832219b (diff) | |
download | bcm5719-llvm-d46c65592e3ac6a78c54514e4919d505c1f0c74a.tar.gz bcm5719-llvm-d46c65592e3ac6a78c54514e4919d505c1f0c74a.zip |
[ValueObjectDisplay] Generalize the description of an option.
-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 81c10a6c762..da0437ac299 100644 --- a/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp +++ b/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp @@ -41,7 +41,7 @@ static const OptionDefinition g_option_table[] = { {}, 0, eArgTypeNone, "Show variable location information."}, {LLDB_OPT_SET_1, false, "object-description", 'O', OptionParser::eNoArgument, nullptr, {}, 0, eArgTypeNone, - "Print as an Objective-C object."}, + "Display using a language-specific description API, if possible."}, {LLDB_OPT_SET_1, false, "ptr-depth", 'P', OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypeCount, "The number of pointers to be traversed " "when dumping values (default is zero)."}, |