Commit 190ff15c authored by Misha Shneerson's avatar Misha Shneerson Committed by Facebook GitHub Bot

priority can be a negative int8_t

Reviewed By: yfeldblum

Differential Revision: D23178843

fbshipit-source-id: d9fade6f7a5f8472bffb7a40d285eaf7646ac0e8
parent be66f73c
......@@ -35,7 +35,7 @@ class QueueObserver {
class QueueObserverFactory {
public:
virtual ~QueueObserverFactory() {}
virtual std::unique_ptr<QueueObserver> create(size_t pri) = 0;
virtual std::unique_ptr<QueueObserver> create(int8_t pri) = 0;
static std::unique_ptr<QueueObserverFactory> make(
const std::string& context,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment