Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 375237 | Differences between
and this patch

Collapse All | Expand All

(-)src/Lib/ArrayUtil/QueueTemplate.hpp.old (-1 / +1 lines)
Lines 42-48 Link Here
42
42
43
    bool enqueue(const TYPE& object )
43
    bool enqueue(const TYPE& object )
44
    {
44
    {
45
        add( object, (rear + 1) % this->size );
45
        this->add( object, (rear + 1) % this->size );
46
        rear = (rear + 1) % this->size;
46
        rear = (rear + 1) % this->size;
47
47
48
        if ( front == rear )
48
        if ( front == rear )

Return to bug 375237