From: Joel Rosdahl Date: Mon, 6 Jul 2020 15:13:06 +0000 (+0200) Subject: Fix Clang-Tidy inconsistent-declaration-parameter-name warning X-Git-Tag: v4.0~350 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4d6f2965744d71b87e6da17ce75e0890d218709e;p=thirdparty%2Fccache.git Fix Clang-Tidy inconsistent-declaration-parameter-name warning --- diff --git a/src/AtomicFile.hpp b/src/AtomicFile.hpp index c38573070..118c310b4 100644 --- a/src/AtomicFile.hpp +++ b/src/AtomicFile.hpp @@ -30,7 +30,7 @@ class AtomicFile public: enum class Mode { binary, text }; - AtomicFile(const std::string& destination_path, Mode mode); + AtomicFile(const std::string& path, Mode mode); ~AtomicFile(); FILE* stream();