| 148 | |
| 149 | private: |
| 150 | struct Cell { |
| 151 | std::atomic<size_t> sequence; |
| 152 | T data; |
| 153 | }; |
| 154 | |
| 155 | template <typename U> |
| 156 | [[nodiscard]] auto enqueue_impl(U&& item) noexcept -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected