[clang-tidy] remove const in declaration

Found with readability-avoid-const-params-in-decls

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2020-02-02 14:16:14 -08:00
parent 140d8547c7
commit 1de5bd64d8
No known key found for this signature in database
GPG Key ID: 36D31CFA845F0E3B
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ public:
explicit ConfigLoader(ConfigData &_config) noexcept explicit ConfigLoader(ConfigData &_config) noexcept
:config(_config) {} :config(_config) {}
bool TryFile(const Path path); bool TryFile(Path path);
bool TryFile(const AllocatedPath &base_path, Path path); bool TryFile(const AllocatedPath &base_path, Path path);
}; };