folly: build with -Wunused-parameter
[folly.git] / folly / futures / test / CollectTest.cpp
index e74fe9db597961a7e675ef436bc023b87b97ab5c..c58b41ff2f285a92b7b7e00f8c123accca210a85 100644 (file)
@@ -633,7 +633,7 @@ TEST(Collect, collectAllNone) {
 
 TEST(Collect, noDefaultConstructor) {
   struct A {
-    explicit A(size_t x) {}
+    explicit A(size_t /* x */) {}
   };
 
   auto f1 = makeFuture(A(1));