[Lldb-commits] [lldb] r226076 - Fix build after r226068: cannot initialize 'int' with 'nullptr_t'

Ed Maste emaste at freebsd.org
Wed Jan 14 18:07:28 PST 2015


Author: emaste
Date: Wed Jan 14 20:07:28 2015
New Revision: 226076

URL: http://llvm.org/viewvc/llvm-project?rev=226076&view=rev
Log:
Fix build after r226068: cannot initialize 'int' with 'nullptr_t'


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

Modified: lldb/trunk/source/Commands/CommandObjectHelp.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectHelp.cpp?rev=226076&r1=226075&r2=226076&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectHelp.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectHelp.cpp Wed Jan 14 20:07:28 2015
@@ -57,7 +57,7 @@ CommandObjectHelp::CommandOptions::g_opt
     { LLDB_OPT_SET_ALL, false, "hide-aliases", 'a', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone,         "Hide aliases in the command list."},
     { LLDB_OPT_SET_ALL, false, "hide-user-commands", 'u', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone,         "Hide user-defined commands from the list."},
     { LLDB_OPT_SET_ALL, false, "show-hidden-commands", 'h', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone,         "Include commands prefixed with an underscore."},
-    { 0, false, NULL, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
+    { 0, false, NULL, 0, 0, 0, NULL, 0, eArgTypeNone, NULL }
 };
 
 bool





More information about the lldb-commits mailing list