Close AsyncServerSocket sockets in reverse order
[folly.git] / folly / Executor.h
index 2af0b809c27059ea48f3e06d92dd0c30c97bb0c0..168b6595173516c2e62793affa7125eebbf82d77 100644 (file)
@@ -37,7 +37,7 @@ class Executor {
 
   /// Enqueue a function with a given priority, where 0 is the medium priority
   /// This is up to the implementation to enforce
-  virtual void addWithPriority(Func, int8_t priority) {
+  virtual void addWithPriority(Func, int8_t /*priority*/) {
     throw std::runtime_error(
         "addWithPriority() is not implemented for this Executor");
   }