From 36ba43d6ea38062b17f7e63ef659962bfc51c64d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 6 Jun 2017 23:34:34 +0300 Subject: Fix clang-tidy check readability-implicit-bool-cast. --- src/logger.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/logger.cpp') diff --git a/src/logger.cpp b/src/logger.cpp index c83cc69dc..48578c20d 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -168,7 +168,7 @@ void Logger::dlog2(const std::string &str, if (mLogFile.is_open()) { - if (comment) + if (comment != nullptr) { mLogFile << timeStr.str(); mLogFile.fill('0'); @@ -188,7 +188,7 @@ void Logger::dlog2(const std::string &str, if (mLogToStandardOut) { - if (comment) + if (comment != nullptr) { std::cout << timeStr.str(); std::cout.fill('0'); -- cgit v1.2.3-60-g2f50