diff options
Diffstat (limited to 'lldb/source/Target/MemoryHistory.cpp')
-rw-r--r-- | lldb/source/Target/MemoryHistory.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lldb/source/Target/MemoryHistory.cpp b/lldb/source/Target/MemoryHistory.cpp index b97096b06d7..33860f868ee 100644 --- a/lldb/source/Target/MemoryHistory.cpp +++ b/lldb/source/Target/MemoryHistory.cpp @@ -1,4 +1,4 @@ -//===-- MemoryHistory.cpp -------------------------*- C++ -*-===// +//===-- MemoryHistory.cpp ---------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -7,8 +7,11 @@ // //===----------------------------------------------------------------------===// +// C Includes +// C++ Includes +// Other libraries and framework includes +// Project includes #include "lldb/Target/MemoryHistory.h" - #include "lldb/Core/PluginManager.h" using namespace lldb; @@ -17,12 +20,12 @@ using namespace lldb_private; lldb::MemoryHistorySP MemoryHistory::FindPlugin (const ProcessSP process) { - MemoryHistoryCreateInstance create_callback = NULL; + MemoryHistoryCreateInstance create_callback = nullptr; - for (uint32_t idx = 0; (create_callback = PluginManager::GetMemoryHistoryCreateCallbackAtIndex(idx)) != NULL; ++idx) + for (uint32_t idx = 0; (create_callback = PluginManager::GetMemoryHistoryCreateCallbackAtIndex(idx)) != nullptr; ++idx) { MemoryHistorySP memory_history_sp (create_callback (process)); - if (memory_history_sp.get()) + if (memory_history_sp) return memory_history_sp; } |