From f357d79176ffbde8947a8c9b039729273f7411cd Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Mon, 22 Feb 2016 20:46:27 +0100 Subject: Rename `PathMatcher::isMatching` to `PathMatcher::is_matching` Purely cosmetic change to match the overall naming scheme. --- src/tracking/path_matcher.cc | 2 +- src/tracking/path_matcher.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tracking') 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 patterns_; -- cgit v1.2.3