aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectSource.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2013-04-18 19:58:52 +0000
committerGreg Clayton <gclayton@apple.com>2013-04-18 19:58:52 +0000
commitee0c8323b21279610652bf8ed830b38bbc338803 (patch)
tree84748402aefe00977e4182456784236c55958bdd /lldb/source/Commands/CommandObjectSource.cpp
parent5570318f430ee3801ced96e76cd9eb507874e29c (diff)
downloadllvm-ee0c8323b21279610652bf8ed830b38bbc338803.zip
llvm-ee0c8323b21279610652bf8ed830b38bbc338803.tar.gz
llvm-ee0c8323b21279610652bf8ed830b38bbc338803.tar.bz2
<rdar://problem/13678882>
Disable "source info" until actually implemented. llvm-svn: 179787
Diffstat (limited to 'lldb/source/Commands/CommandObjectSource.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectSource.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectSource.cpp b/lldb/source/Commands/CommandObjectSource.cpp
index dde0804..4553867 100644
--- a/lldb/source/Commands/CommandObjectSource.cpp
+++ b/lldb/source/Commands/CommandObjectSource.cpp
@@ -778,7 +778,8 @@ CommandObjectMultiwordSource::CommandObjectMultiwordSource (CommandInterpreter &
"A set of commands for accessing source file information",
"source <subcommand> [<subcommand-options>]")
{
- LoadSubCommand ("info", CommandObjectSP (new CommandObjectSourceInfo (interpreter)));
+ // "source info" isn't implemented yet...
+ //LoadSubCommand ("info", CommandObjectSP (new CommandObjectSourceInfo (interpreter)));
LoadSubCommand ("list", CommandObjectSP (new CommandObjectSourceList (interpreter)));
}