diff options
Diffstat (limited to 'src/tracking')
-rw-r--r-- | src/tracking/path_matcher.cc | 2 | ||||
-rw-r--r-- | src/tracking/path_matcher.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tracking/path_matcher.cc b/src/tracking/path_matcher.cc index c136565..da7917d 100644 --- a/src/tracking/path_matcher.cc +++ b/src/tracking/path_matcher.cc @@ -28,7 +28,7 @@ PathMatcher::PathMatcher(const std::string& source_file_path) { } } -bool PathMatcher::isMatching(const std::string& candidate) const { +bool PathMatcher::is_matching(const std::string& candidate) const { return std::any_of( this->patterns_.begin(), this->patterns_.end(), diff --git a/src/tracking/path_matcher.h b/src/tracking/path_matcher.h index 64337c0..966567e 100644 --- a/src/tracking/path_matcher.h +++ b/src/tracking/path_matcher.h @@ -11,7 +11,7 @@ class PathMatcher { PathMatcher() = default; PathMatcher(const std::string&); - bool isMatching(const std::string&) const; + bool is_matching(const std::string&) const; private: std::vector<std::regex> patterns_; |