summaryrefslogtreecommitdiff
path: root/http/logging.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'http/logging.hpp')
-rw-r--r--http/logging.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/http/logging.hpp b/http/logging.hpp
index 3fdef7e744..781bcfb9b2 100644
--- a/http/logging.hpp
+++ b/http/logging.hpp
@@ -166,9 +166,9 @@ struct FormatString
std::source_location loc;
// NOLINTNEXTLINE(google-explicit-constructor)
- FormatString(const char* strIn, const std::source_location& locIn =
- std::source_location::current()) :
- str(strIn),
+ FormatString(const char* stringIn, const std::source_location& locIn =
+ std::source_location::current()) :
+ str(stringIn),
loc(locIn)
{}
};