Some more typing-related fixes.

llvm-svn: 163638
This commit is contained in:
Filipe Cabecinhas 2012-09-11 18:11:07 +00:00
parent 4b963415c2
commit b4cb0be3b7
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ g_option_table[] =
{ LLDB_OPT_SET_1, false, "no-summary-depth", 'Y', optional_argument, NULL, 0, eArgTypeCount, "Set the depth at which omitting summary information stops (default is 1)."}, { LLDB_OPT_SET_1, false, "no-summary-depth", 'Y', optional_argument, NULL, 0, eArgTypeCount, "Set the depth at which omitting summary information stops (default is 1)."},
{ LLDB_OPT_SET_1, false, "raw-output", 'R', no_argument, NULL, 0, eArgTypeNone, "Don't use formatting options."}, { LLDB_OPT_SET_1, false, "raw-output", 'R', no_argument, NULL, 0, eArgTypeNone, "Don't use formatting options."},
{ LLDB_OPT_SET_1, false, "show-all-children",'A', no_argument, NULL, 0, eArgTypeNone, "Ignore the upper bound on the number of children to show."}, { LLDB_OPT_SET_1, false, "show-all-children",'A', no_argument, NULL, 0, eArgTypeNone, "Ignore the upper bound on the number of children to show."},
{ 0, false, NULL, 0, 0, NULL, NULL, eArgTypeNone, NULL } { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
}; };
uint32_t uint32_t

View File

@ -132,7 +132,7 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread,
m_valid (false), m_valid (false),
m_stop_other_threads (stop_other_threads), m_stop_other_threads (stop_other_threads),
m_function_addr (function), m_function_addr (function),
m_function_sp (NULL), m_function_sp (0),
m_return_type (return_type), m_return_type (return_type),
m_takedown_done (false), m_takedown_done (false),
m_stop_address (LLDB_INVALID_ADDRESS), m_stop_address (LLDB_INVALID_ADDRESS),
@ -196,7 +196,7 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread,
m_valid (false), m_valid (false),
m_stop_other_threads (stop_other_threads), m_stop_other_threads (stop_other_threads),
m_function_addr (function), m_function_addr (function),
m_function_sp(NULL), m_function_sp(0),
m_return_type (return_type), m_return_type (return_type),
m_takedown_done (false), m_takedown_done (false),
m_stop_address (LLDB_INVALID_ADDRESS) m_stop_address (LLDB_INVALID_ADDRESS)