diff options
author | Caroline Tice <ctice@apple.com> | 2010-09-27 16:58:16 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2010-09-27 16:58:16 +0000 |
commit | 0f564dbc8ca40e24a6dcdbb39f5c943e79146dbc (patch) | |
tree | f43c6b683f43c02adb87dcbbe719a40b1495777a /lldb/source/Commands/CommandObjectSettings.cpp | |
parent | ca8ebc8de202b4f370c096108da740fa340b6161 (diff) | |
download | bcm5719-llvm-0f564dbc8ca40e24a6dcdbb39f5c943e79146dbc.tar.gz bcm5719-llvm-0f564dbc8ca40e24a6dcdbb39f5c943e79146dbc.zip |
Change command option "--no_override" to "--no-override" (hypen instead of underscore).
llvm-svn: 114840
Diffstat (limited to 'lldb/source/Commands/CommandObjectSettings.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectSettings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectSettings.cpp b/lldb/source/Commands/CommandObjectSettings.cpp index dd60fd67933..9fb7a671e1d 100644 --- a/lldb/source/Commands/CommandObjectSettings.cpp +++ b/lldb/source/Commands/CommandObjectSettings.cpp @@ -206,7 +206,7 @@ CommandObjectSettingsSet::CommandOptions::~CommandOptions () lldb::OptionDefinition CommandObjectSettingsSet::CommandOptions::g_option_table[] = { - { LLDB_OPT_SET_1, false, "no_override", 'n', no_argument, NULL, NULL, NULL, "Prevents already existing instances and pending settings from being assigned this new value. Using this option means that only the default or specified instance setting values will be updated." }, + { LLDB_OPT_SET_1, false, "no-override", 'n', no_argument, NULL, NULL, NULL, "Prevents already existing instances and pending settings from being assigned this new value. Using this option means that only the default or specified instance setting values will be updated." }, { LLDB_OPT_SET_2, false, "reset", 'r', no_argument, NULL, NULL, NULL, "Causes value to be reset to the original default for this variable. No value needs to be specified when this option is used." }, }; |