| 2084 | } |
| 2085 | |
| 2086 | size_t current() { |
| 2087 | std::lock_guard<std::mutex> lock{mutex_}; |
| 2088 | return (std::min)( |
| 2089 | progress_, |
| 2090 | size_t(get_value<details::ProgressBarOption::max_progress>())); |
| 2091 | } |
| 2092 | |
| 2093 | bool is_completed() const { |
| 2094 | return get_value<details::ProgressBarOption::completed>(); |
nothing calls this directly
no outgoing calls
no test coverage detected