Boost C++ Libraries: Ticket #13389: rbtree_best_fit.hpp:grow() if condition error https://svn.boost.org/trac10/ticket/13389 <p> in file boost/interprocess/mem_algo/rbtree_best_fit.hpp:480 func: </p> <pre class="wiki">void rbtree_best_fit&lt;MutexFamily, VoidPointer, MemAlignment&gt;::grow(size_type extra_size) { ... if((m_header.m_size - old_border_offset) &lt; MinBlockUnits){ return; } ... } </pre><p> condition error. the if condition should be : </p> <pre class="wiki"> if((m_header.m_size - old_border_offset) &lt; MinBlockUnits*Alignment) { return; } </pre> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/13389 Trac 1.4.3