"break set -F" should also use the full symbol name completer.

llvm-svn: 113371
This commit is contained in:
Jim Ingham 2010-09-08 17:52:03 +00:00
parent 91123da2d1
commit 9f157f574d
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ CommandObjectBreakpointSet::CommandOptions::g_option_table[] =
{ LLDB_OPT_SET_3, true, "name", 'n', required_argument, NULL, CommandCompletions::eSymbolCompletion, "<name>",
"Set the breakpoint by function name - for C++ this means namespaces and arguments will be ignored." },
{ LLDB_OPT_SET_4, true, "fullname", 'F', required_argument, NULL, 0, "<fullname>",
{ LLDB_OPT_SET_4, true, "fullname", 'F', required_argument, NULL, CommandCompletions::eSymbolCompletion, "<fullname>",
"Set the breakpoint by fully qualified function names. For C++ this means namespaces and all arguemnts, and "
"for Objective C this means a full function prototype with class and selector." },