folly: build with -Wunused-parameter
[folly.git] / folly / test / FBVectorBenchmark.cpp
index 1803df61486adb328b468dfbe2bd79dfd0a6c29c..ee3c2bcd193fbb91b7ce1d428e2eea791be2e2f0 100644 (file)
@@ -56,7 +56,7 @@ void randomString(String* toFill, unsigned int maxSize = 1000) {
 }
 
 template <class String, class Integral>
-void Num2String(String& str, Integral n) {
+void Num2String(String& str, Integral /* n */) {
   str.resize(10, '\0');
   sprintf(&str[0], "%ul", 10);
   str.resize(strlen(str.c_str()));