From a463989278537ba1fc0fa4fc371fe4a6270eb8de Mon Sep 17 00:00:00 2001 From: gabime Date: Thu, 22 Nov 2018 18:50:56 +0200 Subject: [PATCH] keep clang-tidy happy --- include/spdlog/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/spdlog/common.h b/include/spdlog/common.h index 34c0862f..5bd24c0f 100644 --- a/include/spdlog/common.h +++ b/include/spdlog/common.h @@ -188,8 +188,8 @@ using filename_t = std::string; struct source_loc { SPDLOG_CONSTEXPR source_loc() - : filename("") - , line(0) + : filename{""} + , line{0} { } SPDLOG_CONSTEXPR source_loc(const char *filename, int line)