Commit 25bd8416 authored by Maged Michael's avatar Maged Michael Committed by Facebook Github Bot

MPMCQueue: Add comment that Dynamic version is deprecated.

Summary: Add a comment that the Dynamic version of MPMCQueue is deprecated and that UnboundedQueue should be used instead.

Reviewed By: yfeldblum

Differential Revision: D15392160

fbshipit-source-id: 5958b7602d3062878dd3e78907cb7091532ad4b8
parent 791b61f0
......@@ -115,6 +115,9 @@ class MPMCQueue : public detail::MPMCQueueBase<MPMCQueue<T, Atom, Dynamic>> {
MPMCQueue() noexcept {}
};
/// *** The dynamic version of MPMCQueue is deprecated. ***
/// Use UnboundedQueue instead.
/// The dynamic version of MPMCQueue allows dynamic expansion of queue
/// capacity, such that a queue may start with a smaller capacity than
/// specified and expand only if needed. Users may optionally specify
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment