[Lldb-commits] [lldb] r179787 - <rdar://problem/13678882>

Greg Clayton gclayton at apple.com
Thu Apr 18 12:58:52 PDT 2013


Author: gclayton
Date: Thu Apr 18 14:58:52 2013
New Revision: 179787

URL: http://llvm.org/viewvc/llvm-project?rev=179787&view=rev
Log:
<rdar://problem/13678882>

Disable "source info" until actually implemented.


Modified:
    lldb/trunk/source/Commands/CommandObjectSource.cpp

Modified: lldb/trunk/source/Commands/CommandObjectSource.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectSource.cpp?rev=179787&r1=179786&r2=179787&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectSource.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectSource.cpp Thu Apr 18 14:58:52 2013
@@ -778,7 +778,8 @@ CommandObjectMultiwordSource::CommandObj
                             "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)));
 }
 





More information about the lldb-commits mailing list