| 316 | using ValueType = THolder<int>; |
| 317 | |
| 318 | static void Enqueue(TLockFreeStack<ValueType>& stack, size_t i) { |
| 319 | stack.Enqueue(MakeHolder<int>(static_cast<int>(i))); |
| 320 | } |
| 321 | |
| 322 | static void Dequeue(TLockFreeStack<ValueType>& stack) { |
| 323 | ValueType value; |
no outgoing calls
no test coverage detected