| 2862 | |
| 2863 | template <size_t index> |
| 2864 | typename std::enable_if<(index >= 0 && index < count), bool>::type is_completed() const { |
| 2865 | return bars_[index].get().is_completed(); |
| 2866 | } |
| 2867 | |
| 2868 | private: |
| 2869 | std::atomic<bool> started_{false}; |
nothing calls this directly
no test coverage detected