From c0083d6788254c58dd7dfcaed7667fbab5312da1 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sat, 2 Jul 2022 12:38:32 -0700 Subject: [PATCH] clang-tidy: fix mismatching declaration variable Signed-off-by: Rosen Penev --- src/utils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.hpp b/src/utils.hpp index 1e16648d..c385b07d 100644 --- a/src/utils.hpp +++ b/src/utils.hpp @@ -14,7 +14,7 @@ constexpr bool startsWith(std::string_view s, std::string_view start) { std::string upper(const std::string& str); /// @brief Returns the lowercase version of \b str -std::string lower(const std::string& str); +std::string lower(const std::string& a); } // namespace Exiv2::Internal