| 299 | } |
| 300 | |
| 301 | ~ProgressReporter() { |
| 302 | if (mReportProgressInterval < 0) |
| 303 | return; |
| 304 | mErrorLogger.reportProgress(mFilename, mStage.c_str(), 100); |
| 305 | } |
| 306 | |
| 307 | void report(int value) { |
| 308 | if (mReportProgressInterval < 0 || value == mLastValue) |
nothing calls this directly
no test coverage detected