| 21 | } |
| 22 | |
| 23 | ~Printer() |
| 24 | { |
| 25 | // cout is not thread safe |
| 26 | //std::cout << "Final count is " << count_ << "\n"; |
| 27 | printf("Final count is %d\n", count_); |
| 28 | } |
| 29 | |
| 30 | void print1() |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected