From 1de5bd64d8b7172ba72877c63269c8d0fca5ceba Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sun, 2 Feb 2020 14:16:14 -0800 Subject: [PATCH] [clang-tidy] remove const in declaration Found with readability-avoid-const-params-in-decls Signed-off-by: Rosen Penev --- src/CommandLine.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CommandLine.cxx b/src/CommandLine.cxx index 765b621b5..4249b1f2f 100644 --- a/src/CommandLine.cxx +++ b/src/CommandLine.cxx @@ -297,7 +297,7 @@ public: explicit ConfigLoader(ConfigData &_config) noexcept :config(_config) {} - bool TryFile(const Path path); + bool TryFile(Path path); bool TryFile(const AllocatedPath &base_path, Path path); };