update stats APIs to use TimePoint vs Duration correctly
[folly.git] / folly / Executor.h
index c790045985885558b4b13c79995663ee825f33f7..6038ee62f477da2f6ca20dffc25d560c13d4dce0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Facebook, Inc.
+ * Copyright 2016 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -19,6 +19,7 @@
 #include <atomic>
 #include <climits>
 #include <functional>
+#include <stdexcept>
 
 namespace folly {
 
@@ -36,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");
   }