diff options
author | Filipe Cabecinhas <me@filcab.net> | 2012-09-11 18:11:07 +0000 |
---|---|---|
committer | Filipe Cabecinhas <me@filcab.net> | 2012-09-11 18:11:07 +0000 |
commit | b4cb0be3b723e181c1ff3c2d7715a1c39b8cfb9c (patch) | |
tree | 5a7c7e9b13fee8d82a9c94b3534620ebba52963e /lldb/source/Target/ThreadPlanCallFunction.cpp | |
parent | 4b963415c20bc38b5c0ae0fdbcfa4e94050ab150 (diff) | |
download | bcm5719-llvm-b4cb0be3b723e181c1ff3c2d7715a1c39b8cfb9c.tar.gz bcm5719-llvm-b4cb0be3b723e181c1ff3c2d7715a1c39b8cfb9c.zip |
Some more typing-related fixes.
llvm-svn: 163638
Diffstat (limited to 'lldb/source/Target/ThreadPlanCallFunction.cpp')
-rw-r--r-- | lldb/source/Target/ThreadPlanCallFunction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Target/ThreadPlanCallFunction.cpp b/lldb/source/Target/ThreadPlanCallFunction.cpp index 0491d34a26d..370db076a3a 100644 --- a/lldb/source/Target/ThreadPlanCallFunction.cpp +++ b/lldb/source/Target/ThreadPlanCallFunction.cpp @@ -132,7 +132,7 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread, m_valid (false), m_stop_other_threads (stop_other_threads), m_function_addr (function), - m_function_sp (NULL), + m_function_sp (0), m_return_type (return_type), m_takedown_done (false), m_stop_address (LLDB_INVALID_ADDRESS), @@ -196,7 +196,7 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread, m_valid (false), m_stop_other_threads (stop_other_threads), m_function_addr (function), - m_function_sp(NULL), + m_function_sp(0), m_return_type (return_type), m_takedown_done (false), m_stop_address (LLDB_INVALID_ADDRESS) |