| 3143 | } |
| 3144 | |
| 3145 | size_t current() { |
| 3146 | std::lock_guard<std::mutex> lock{mutex_}; |
| 3147 | return (std::min)(progress_, size_t(get_value<details::ProgressBarOption::max_progress>())); |
| 3148 | } |
| 3149 | |
| 3150 | bool is_completed() const { return get_value<details::ProgressBarOption::completed>(); } |
| 3151 |
nothing calls this directly
no outgoing calls
no test coverage detected