From b3aed209815fbfc40a88d5a5e11255848395aefc Mon Sep 17 00:00:00 2001 From: "M. Galib Uludag" Date: Sun, 26 Mar 2023 22:31:07 +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 dc19083d..f4dcc6b6 100644 --- a/include/spdlog/details/source_location.h +++ b/include/spdlog/details/source_location.h @@ -36,7 +36,7 @@ public: const int columnOffset = 0) noexcept #endif { - return source_location(fileName, functionName, lineNumber, columnOffset); + return source_location(fileName, lineNumber, functionName, columnOffset); } source_location(const source_location &) = default;