folly: build with -Wunused-parameter
[folly.git] / folly / test / ConcurrentSkipListBenchmark.cpp
index fa5437c0e99e5e89e2e5b1b3e33bced1f3d24e5f..bd3028575d1c112bc777440ebb8106c5bb2dedf3 100644 (file)
@@ -384,13 +384,13 @@ class ConcurrentAccessData {
     FOR_EACH(lock, locks_) delete *lock;
   }
 
-  inline bool skipListFind(int idx, ValueType val) {
+  inline bool skipListFind(int /* idx */, ValueType val) {
     return skipList_.contains(val);
   }
-  inline void skipListInsert(int idx, ValueType val) {
+  inline void skipListInsert(int /* idx */, ValueType val) {
     skipList_.add(val);
   }
-  inline void skipListErase(int idx, ValueType val) {
+  inline void skipListErase(int /* idx */, ValueType val) {
     skipList_.remove(val);
   }