| 2855 | |
| 2856 | template <size_t index> |
| 2857 | typename std::enable_if<(index >= 0 && index < count), void>::type tick() { |
| 2858 | if (!bars_[index].get().is_completed()) |
| 2859 | bars_[index].get().tick(); |
| 2860 | print_progress(); |
| 2861 | } |
| 2862 | |
| 2863 | template <size_t index> |
| 2864 | typename std::enable_if<(index >= 0 && index < count), bool>::type is_completed() const { |
nothing calls this directly
no test coverage detected