| 2394 | } |
| 2395 | |
| 2396 | void tick() { |
| 2397 | { |
| 2398 | std::lock_guard<std::mutex> lock{mutex_}; |
| 2399 | progress_ += 1; |
| 2400 | } |
| 2401 | save_start_time(); |
| 2402 | print_progress(); |
| 2403 | } |
| 2404 | |
| 2405 | size_t current() { |
| 2406 | std::lock_guard<std::mutex> lock{mutex_}; |
nothing calls this directly
no outgoing calls
no test coverage detected