Chromium Code Reviews| Index: src/unbound-queue.h |
| diff --git a/src/unbound-queue.h b/src/unbound-queue.h |
| index 59a426b7fedf72c822a6d8d4aaf1ee2aa75b3213..7b3964430e33a1ec8c54407047eac49f0721eea9 100644 |
| --- a/src/unbound-queue.h |
| +++ b/src/unbound-queue.h |
| @@ -46,7 +46,7 @@ class UnboundQueue BASE_EMBEDDED { |
| inline UnboundQueue(); |
| inline ~UnboundQueue(); |
| - INLINE(void Dequeue(Record* rec)); |
| + INLINE(bool Dequeue(Record* rec)); |
| INLINE(void Enqueue(const Record& rec)); |
| INLINE(bool IsEmpty()) { return divider_ == last_; } |
|
Dmitry Vyukov
2013/06/17 19:51:57
this must use NoBarrier_Load's
yurys
2013/06/18 08:01:00
Done.
|
| INLINE(Record* Peek()); |