diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-02-18 00:10:17 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-02-18 00:10:17 +0000 |
commit | 9394d772c0ef5c6a88fca777c9f1134811ce2555 (patch) | |
tree | faaea85ba98054896356a9d8541a00d04ed5d320 /lldb/source/Target/InstrumentationRuntime.cpp | |
parent | 8e3061b8659cf3b75f766ab1f159fc73e01ed4b0 (diff) | |
download | bcm5719-llvm-9394d772c0ef5c6a88fca777c9f1134811ce2555.tar.gz bcm5719-llvm-9394d772c0ef5c6a88fca777c9f1134811ce2555.zip |
Fix Clang-tidy modernize-use-nullptr warnings; other minor fixes.
llvm-svn: 261179
Diffstat (limited to 'lldb/source/Target/InstrumentationRuntime.cpp')
-rw-r--r-- | lldb/source/Target/InstrumentationRuntime.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lldb/source/Target/InstrumentationRuntime.cpp b/lldb/source/Target/InstrumentationRuntime.cpp index b3b2393b023..7386c4efa73 100644 --- a/lldb/source/Target/InstrumentationRuntime.cpp +++ b/lldb/source/Target/InstrumentationRuntime.cpp @@ -5,8 +5,12 @@ // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // -//===----------------------------------------------------------------------===// +//===---------------------------------------------------------------------===// +// C Includes +// C++ Includes +// Other libraries and framework includes +// Project includes #include "lldb/lldb-private.h" #include "lldb/Target/Process.h" #include "lldb/Core/PluginManager.h" @@ -18,12 +22,12 @@ using namespace lldb_private; void InstrumentationRuntime::ModulesDidLoad(lldb_private::ModuleList &module_list, lldb_private::Process *process, InstrumentationRuntimeCollection &runtimes) { - InstrumentationRuntimeCreateInstance create_callback = NULL; + InstrumentationRuntimeCreateInstance create_callback = nullptr; InstrumentationRuntimeGetType get_type_callback; for (uint32_t idx = 0; ; ++idx) { create_callback = PluginManager::GetInstrumentationRuntimeCreateCallbackAtIndex(idx); - if (create_callback == NULL) + if (create_callback == nullptr) break; get_type_callback = PluginManager::GetInstrumentationRuntimeGetTypeCallbackAtIndex(idx); InstrumentationRuntimeType type = get_type_callback(); |