From 46d94ca13cec390b1059a2bfd42e29eca76caf76 Mon Sep 17 00:00:00 2001 From: "M. Galib Uludag" Date: Sun, 26 Mar 2023 22:34:13 +0200 Subject: [PATCH] Update source_location.h --- include/spdlog/details/source_location.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/details/source_location.h b/include/spdlog/details/source_location.h index f4dcc6b6..164db3a9 100644 --- a/include/spdlog/details/source_location.h +++ b/include/spdlog/details/source_location.h @@ -55,7 +55,7 @@ private: const int lineNumber, const char *functionName, const int columnOffset) noexcept - : fileName(fileName), functionName(functionName), lineNumber(lineNumber), + : fileName(fileName), lineNumber(lineNumber), functionName(functionName), columnOffset(columnOffset) {} const char *fileName;