| 1 | // Provides a C++11 implementation of a multi-producer, multi-consumer lock-free queue. |
| 2 | // An overview, including benchmark results, is provided here: |
| 3 | // http://moodycamel.com/blog/2014/a-fast-general-purpose-lock-free-queue-for-c++ |
| 4 | // The full design is also described in excruciating detail at: |
nothing calls this directly
no test coverage detected