clang-tidy: fix mismatching declaration variable

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2022-07-02 12:38:32 -07:00
parent 7f9242afc6
commit c0083d6788

View File

@ -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