diff -r 028b7de98fb1 -r 4b8ef7da0ac3 src/node/queue.h --- a/src/node/queue.h Mon Aug 11 10:30:46 2008 -0700 +++ b/src/node/queue.h Mon Aug 11 10:40:31 2008 -0700 @@ -68,7 +68,7 @@ * Get a copy of the item at the front of the queue without removing it * \return 0 if the operation was not successful; the packet otherwise. */ - Ptr Peek (void) const; + Ptr Peek (void) const; /** * Flush the queue. @@ -142,7 +142,7 @@ virtual bool DoEnqueue (Ptr p) = 0; virtual Ptr DoDequeue (void) = 0; - virtual Ptr DoPeek (void) const = 0; + virtual Ptr DoPeek (void) const = 0; protected: // called by subclasses to notify parent of packet drops.