| 17 | struct ProfileScope |
| 18 | { |
| 19 | explicit ProfileScope(ProfileSample& s) |
| 20 | : s(&s) |
| 21 | { |
| 22 | _start = std::chrono::system_clock::now(); |
| 23 | s.finalized = false; |
| 24 | } |
| 25 | |
| 26 | ~ProfileScope() |
| 27 | { |
nothing calls this directly
no outgoing calls
no test coverage detected