summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2020-02-02 14:16:14 -0800
committerRosen Penev <rosenp@gmail.com>2020-02-04 15:17:10 -0800
commit1de5bd64d8b7172ba72877c63269c8d0fca5ceba (patch)
tree22294a77dacabbcd3ab870e2e8d134458c66ac26 /src
parent140d8547c7cd7432e4acb1acc18dc5235eef0bef (diff)
[clang-tidy] remove const in declaration
Found with readability-avoid-const-params-in-decls Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/CommandLine.cxx2
1 files changed, 1 insertions, 1 deletions
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);
};