| 2152 | m_lineNumber(lineNumber) { |
| 2153 | } |
| 2154 | inline bool operator()(const HitCounter* counter) { |
| 2155 | return ((counter != nullptr) && |
| 2156 | (strcmp(counter->m_filename, m_filename) == 0) && |
| 2157 | (counter->m_lineNumber == m_lineNumber)); |
| 2158 | } |
| 2159 | |
| 2160 | private: |
| 2161 | const char* m_filename; |
nothing calls this directly
no outgoing calls
no test coverage detected