diff options
author | Greg Clayton <gclayton@apple.com> | 2013-04-19 21:31:16 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-04-19 21:31:16 +0000 |
commit | 03da4cc294bbb81c6a3346415afd860b34d25940 (patch) | |
tree | e8e7fd1789afa688611b93cab93918909b17c07c /lldb/source/Commands/CommandObjectWatchpointCommand.cpp | |
parent | 2b4e6b8de21bd786d5294d4429e674d6eb82099a (diff) | |
download | llvm-03da4cc294bbb81c6a3346415afd860b34d25940.zip llvm-03da4cc294bbb81c6a3346415afd860b34d25940.tar.gz llvm-03da4cc294bbb81c6a3346415afd860b34d25940.tar.bz2 |
Fixed some linux buildbot warnings.
llvm-svn: 179892
Diffstat (limited to 'lldb/source/Commands/CommandObjectWatchpointCommand.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectWatchpointCommand.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lldb/source/Commands/CommandObjectWatchpointCommand.cpp b/lldb/source/Commands/CommandObjectWatchpointCommand.cpp index ac86025..0be21f1 100644 --- a/lldb/source/Commands/CommandObjectWatchpointCommand.cpp +++ b/lldb/source/Commands/CommandObjectWatchpointCommand.cpp @@ -830,7 +830,6 @@ CommandObjectWatchpointCommand::CommandObjectWatchpointCommand (CommandInterpret "A set of commands for adding, removing and examining bits of code to be executed when the watchpoint is hit (watchpoint 'commmands').", "command <sub-command> [<sub-command-options>] <watchpoint-id>") { - bool status; CommandObjectSP add_command_object (new CommandObjectWatchpointCommandAdd (interpreter)); CommandObjectSP delete_command_object (new CommandObjectWatchpointCommandDelete (interpreter)); CommandObjectSP list_command_object (new CommandObjectWatchpointCommandList (interpreter)); @@ -839,9 +838,9 @@ CommandObjectWatchpointCommand::CommandObjectWatchpointCommand (CommandInterpret delete_command_object->SetCommandName ("watchpoint command delete"); list_command_object->SetCommandName ("watchpoint command list"); - status = LoadSubCommand ("add", add_command_object); - status = LoadSubCommand ("delete", delete_command_object); - status = LoadSubCommand ("list", list_command_object); + LoadSubCommand ("add", add_command_object); + LoadSubCommand ("delete", delete_command_object); + LoadSubCommand ("list", list_command_object); } CommandObjectWatchpointCommand::~CommandObjectWatchpointCommand () |