diff options
author | Caroline Tice <ctice@apple.com> | 2010-09-09 06:25:08 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2010-09-09 06:25:08 +0000 |
commit | 101c7c2060354f6e91efc65f9c4ea9f13a591152 (patch) | |
tree | d8423df9d08dfc78cd1615f317468f5ff70c9e76 /lldb/source/Commands/CommandObjectSyntax.cpp | |
parent | 4adbaf184340a71925eea83a2811c4763e281f38 (diff) | |
download | llvm-101c7c2060354f6e91efc65f9c4ea9f13a591152.zip llvm-101c7c2060354f6e91efc65f9c4ea9f13a591152.tar.gz llvm-101c7c2060354f6e91efc65f9c4ea9f13a591152.tar.bz2 |
Make all debugger-level user settable variables into instance variables.
Make get/set variable at the debugger level always set the particular debugger's instance variables rather than
the default variables.
llvm-svn: 113474
Diffstat (limited to 'lldb/source/Commands/CommandObjectSyntax.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectSyntax.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectSyntax.cpp b/lldb/source/Commands/CommandObjectSyntax.cpp index 072ae29..6574692 100644 --- a/lldb/source/Commands/CommandObjectSyntax.cpp +++ b/lldb/source/Commands/CommandObjectSyntax.cpp @@ -76,7 +76,6 @@ CommandObjectSyntax::Execute if (cmd_obj->GetOptions() != NULL) { output_strm.Printf ("\nSyntax: %s\n", cmd_obj->GetSyntax()); - //cmd_obj->GetOptions()->GenerateOptionUsage (output_strm, cmd_obj); output_strm.Printf ("(Try 'help %s' for more information on command options syntax.)\n", cmd_obj->GetCommandName()); result.SetStatus (eReturnStatusSuccessFinishNoResult); |