diff options
-rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp index af34301..f7f0104 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp @@ -135,8 +135,8 @@ public: const char *GetIgnoredExceptions() const { const uint32_t idx = ePropertyIgnoredExceptions; const OptionValueString *option_value = - m_collection_sp->GetPropertyAtIndexAsOptionValueString( - NULL, false, idx); + m_collection_sp->GetPropertyAtIndexAsOptionValueString(nullptr, false, + idx); assert(option_value); return option_value->GetCurrentValue(); } @@ -144,8 +144,8 @@ public: OptionValueString *GetIgnoredExceptionValue() { const uint32_t idx = ePropertyIgnoredExceptions; OptionValueString *option_value = - m_collection_sp->GetPropertyAtIndexAsOptionValueString( - NULL, false, idx); + m_collection_sp->GetPropertyAtIndexAsOptionValueString(nullptr, false, + idx); assert(option_value); return option_value; } |