| 2086 | class HitCounter { |
| 2087 | public: |
| 2088 | HitCounter(void) : |
| 2089 | m_filename(""), |
| 2090 | m_lineNumber(0), |
| 2091 | m_hitCounts(0) { |
| 2092 | } |
| 2093 | |
| 2094 | HitCounter(const char* filename, base::type::LineNumber lineNumber) : |
| 2095 | m_filename(filename), |
nothing calls this directly
no outgoing calls
no test coverage detected