projects
/
folly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1f656e7
)
remove spurious warning
author
James Sedgwick
<jsedgwick@fb.com>
Tue, 26 May 2015 17:58:31 +0000
(10:58 -0700)
committer
woo
<woo@fb.com>
Tue, 26 May 2015 18:32:19 +0000
(11:32 -0700)
Summary: see task
Test Plan: OK
Reviewed By: hans@fb.com
Subscribers: fugalh, folly-diffs@, jsedgwick, yfeldblum, chalfant
FB internal diff:
D2099416
Tasks:
7166291
Signature: t1:
2099416
:
1432658571
:
4ae632c218c4764f23e4b189167f6fdaff13dc2d
folly/wangle/concurrent/BlockingQueue.h
patch
|
blob
|
history
diff --git
a/folly/wangle/concurrent/BlockingQueue.h
b/folly/wangle/concurrent/BlockingQueue.h
index ebfdc18d5a4c4c32b76fa399639fd31e559dbc13..72c7aa3566aa1a77dc564f2f913dc2a1aebc86c6 100644
(file)
--- a/
folly/wangle/concurrent/BlockingQueue.h
+++ b/
folly/wangle/concurrent/BlockingQueue.h
@@
-26,8
+26,6
@@
class BlockingQueue {
virtual ~BlockingQueue() {}
virtual void add(T item) = 0;
virtual void addWithPriority(T item, int8_t priority) {
- LOG_FIRST_N(WARNING, 1) <<
- "add(item, priority) called on a non-priority queue";
add(std::move(item));
}
virtual uint8_t getNumPriorities() {