| 199 | //////////////////////////////////////////////////////////////////////////////// |
| 200 | |
| 201 | size_t ApplicationContext::ComponentHolder::next_sequence() noexcept { |
| 202 | static ::std::atomic<size_t> counter {1}; |
| 203 | return counter.fetch_add(1, ::std::memory_order_relaxed); |
| 204 | } |
| 205 | |
| 206 | ptrdiff_t ApplicationContext::ComponentHolder::convert_offset( |
| 207 | const Id* type) const noexcept { |
nothing calls this directly
no outgoing calls
no test coverage detected