| 28 | class ScopedCounter { |
| 29 | public: |
| 30 | ScopedCounter(const ScopedCounter&&) { Increment(); } |
| 31 | ScopedCounter(const ScopedCounter&) { Increment(); } |
| 32 | ScopedCounter() { Increment(); } |
| 33 | ~ScopedCounter() { Decrement(); } |
nothing calls this directly
no outgoing calls
no test coverage detected