| 2148 | class Predicate { |
| 2149 | public: |
| 2150 | Predicate(const char* filename, base::type::LineNumber lineNumber) |
| 2151 | : m_filename(filename), |
| 2152 | m_lineNumber(lineNumber) { |
| 2153 | } |
| 2154 | inline bool operator()(const HitCounter* counter) { |
| 2155 | return ((counter != nullptr) && |
| 2156 | (strcmp(counter->m_filename, m_filename) == 0) && |
nothing calls this directly
no outgoing calls
no test coverage detected