]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Fix Clang-Tidy inconsistent-declaration-parameter-name warning
authorJoel Rosdahl <joel@rosdahl.net>
Mon, 6 Jul 2020 15:13:06 +0000 (17:13 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Mon, 6 Jul 2020 15:13:06 +0000 (17:13 +0200)
src/AtomicFile.hpp

index c3857307096837d820203d2f4059bc63b2a12d47..118c310b4c20d910e22109a6f25c02a6a89e60ed 100644 (file)
@@ -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();