| 2403 | } |
| 2404 | |
| 2405 | size_t current() { |
| 2406 | std::lock_guard<std::mutex> lock{mutex_}; |
| 2407 | return (std::min)(static_cast<size_t>(progress_), |
| 2408 | size_t(get_value<details::ProgressBarOption::max_progress>())); |
| 2409 | } |
| 2410 | |
| 2411 | bool is_completed() const { return get_value<details::ProgressBarOption::completed>(); } |
| 2412 |
nothing calls this directly
no outgoing calls
no test coverage detected