Boost C++ Libraries: Ticket #8355: spsc_queue - Incorrect doc for push/pop array operations https://svn.boost.org/trac10/ticket/8355 <p> The operations </p> <pre class="wiki"> template &lt;size_type size&gt; size_type push(T const (&amp;t)[size]); template &lt;size_type size&gt; size_type pop(T (&amp;ret)[size]); </pre><p> are documented as </p> <pre class="wiki">template&lt;size_type size&gt; size_type push(T const (&amp;) t); template&lt;size_type size&gt; size_type pop(T (&amp;) t); </pre><p> I don't know if this is a doxygen problem, but the doc should be updated to show the real prototype. </p> <p> Adding something like the following would at least warm the user. </p> <pre class="wiki"> * \note Doxygen has some issues generating this prototype. The real prototype is: * \code * template &lt;size_type size&gt; * size_type push(T const (&amp;t)[size]); * \endcode </pre><p> and </p> <pre class="wiki"> * \note Doxygen has some issues generating this prototype. The real prototype is: * \code * template &lt;size_type size&gt; * size_type pop(T (&amp;ret)[size]); * \endcode </pre> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/8355 Trac 1.4.3 viboes Sun, 31 Mar 2013 09:27:28 GMT description changed https://svn.boost.org/trac10/ticket/8355#comment:1 https://svn.boost.org/trac10/ticket/8355#comment:1 <ul> <li><strong>description</strong> modified (<a href="/trac10/ticket/8355?action=diff&amp;version=1">diff</a>) </li> </ul> Ticket anonymous Sun, 31 Mar 2013 09:41:38 GMT <link>https://svn.boost.org/trac10/ticket/8355#comment:2 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/8355#comment:2</guid> <description> <p> yes, unfortunately this seems to be bug in doxygen. will see what happens if i add your comment. </p> </description> <category>Ticket</category> </item> </channel> </rss>