| 3333 | } |
| 3334 | |
| 3335 | inline void swap(ImplicitProducerKVP& other) MOODYCAMEL_NOEXCEPT |
| 3336 | { |
| 3337 | if (this != &other) { |
| 3338 | details::swap_relaxed(key, other.key); |
| 3339 | std::swap(value, other.value); |
| 3340 | } |
| 3341 | } |
| 3342 | }; |
| 3343 | |
| 3344 | template<typename XT, typename XTraits> |
nothing calls this directly
no test coverage detected