From 1c52d5fff738aa01bd27fd117076ac33515acef5 Mon Sep 17 00:00:00 2001 From: Shauren Date: Fri, 14 Aug 2020 17:06:03 +0200 Subject: Core/Misc: Replace NULL with nullptr --- src/common/Logging/Log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/Logging/Log.cpp') diff --git a/src/common/Logging/Log.cpp b/src/common/Logging/Log.cpp index 3ec5aeb421a..209a952dad2 100644 --- a/src/common/Logging/Log.cpp +++ b/src/common/Logging/Log.cpp @@ -243,7 +243,7 @@ Logger const* Log::GetLoggerByType(std::string const& type) const return it->second.get(); if (type == LOGGER_ROOT) - return NULL; + return nullptr; std::string parentLogger = LOGGER_ROOT; size_t found = type.find_last_of('.'); -- cgit v1.2.3