| 2411 | bool is_completed() const { return get_value<details::ProgressBarOption::completed>(); } |
| 2412 | |
| 2413 | void mark_as_completed() { |
| 2414 | get_value<details::ProgressBarOption::completed>() = true; |
| 2415 | print_progress(); |
| 2416 | } |
| 2417 | |
| 2418 | private: |
| 2419 | template <details::ProgressBarOption id> |
nothing calls this directly
no outgoing calls
no test coverage detected