Manager: Rename filter() -> match()

The function returns true on a pattern match, so reflect this in the
name.
This commit is contained in:
Riyyi
2022-03-08 00:06:01 +01:00
parent 37be9506c8
commit 3b4ea3f42d
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -30,8 +30,8 @@ public:
void pull(const std::vector<std::string>& targets = {});
void push(const std::vector<std::string>& targets = {});
bool filter(const std::filesystem::directory_entry& path,
const std::vector<std::string>& patterns);
bool match(const std::filesystem::directory_entry& path,
const std::vector<std::string>& patterns);
private:
void pullOrPush(SyncType type, const std::vector<std::string>& targets = {});