[Lldb-commits] [lldb] r113371 - /lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp
Jim Ingham
jingham at apple.com
Wed Sep 8 10:52:03 PDT 2010
Author: jingham
Date: Wed Sep 8 12:52:03 2010
New Revision: 113371
URL: http://llvm.org/viewvc/llvm-project?rev=113371&view=rev
Log:
"break set -F" should also use the full symbol name completer.
Modified:
lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp
Modified: lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp?rev=113371&r1=113370&r2=113371&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp Wed Sep 8 12:52:03 2010
@@ -106,7 +106,7 @@
{ 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." },
More information about the lldb-commits
mailing list