Ticket #7685: fix_comment_typo.patch

File fix_comment_typo.patch, 1.0 KB (added by anonymous, 10 years ago)
  • boost/lockfree/queue.hpp

     
    1 //  lock-free queue queue from
     1//  lock-free queue from
    22//  Michael, M. M. and Scott, M. L.,
    33//  "simple, fast and practical non-blocking and blocking concurrent queue algorithms"
    44//
  • boost/lockfree/stack.hpp

     
    488488     * \return true, if stack is empty.
    489489     *
    490490     * \note It only guarantees that at some point during the execution of the function the stack has been empty.
    491      *       It is rarely practical to use this value in program logic, because the the stack can be modified by other threads.
     491     *       It is rarely practical to use this value in program logic, because the stack can be modified by other threads.
    492492     * */
    493493    bool empty(void) const
    494494    {