Use standard variadic macros instead of gcc-specific ones
authorAndrei Alexandrescu <aalexandre@fb.com>
Sat, 15 Feb 2014 01:41:14 +0000 (17:41 -0800)
committerDave Watson <davejwatson@fb.com>
Fri, 21 Feb 2014 21:40:49 +0000 (13:40 -0800)
Summary: We've intentionally eliminated support for gcc's old variadic macro syntax so as to bring our close in line with compatbile standards. This diff enables folly to build using warp.

Test Plan: built folly

Reviewed By: delong.j@fb.com

FB internal diff: D1176956

folly/test/MPMCQueueTest.cpp

index 3618692911ba560b80cde36b477cbf6e0e1bbdc2..5bb2fa7b966ebf40baa02308640f0f92949fed9d 100644 (file)
@@ -326,8 +326,8 @@ TEST(MPMCQueue, mt_prod_cons_deterministic) {
           "", 10, 10, 1000);
 }
 
           "", 10, 10, 1000);
 }
 
-#define PC_BENCH(q, np, nc, nops...) \
-    producerConsumerBench(q, #q, (np), (nc), nops)
+#define PC_BENCH(q, np, nc, ...) \
+    producerConsumerBench(q, #q, (np), (nc), __VA_ARGS__)
 
 TEST(MPMCQueue, mt_prod_cons) {
   int n = 100000;
 
 TEST(MPMCQueue, mt_prod_cons) {
   int n = 100000;
@@ -433,7 +433,7 @@ static void lc_snap() {
   }
 }
 
   }
 }
 
-#define LIFECYCLE_STEP(args...) lc_step(__LINE__, args)
+#define LIFECYCLE_STEP(...) lc_step(__LINE__, __VA_ARGS__)
 
 static void lc_step(int lineno, int what = NOTHING, int what2 = NOTHING) {
   for (int i = 0; i < MAX_LIFECYCLE_EVENT; ++i) {
 
 static void lc_step(int lineno, int what = NOTHING, int what2 = NOTHING) {
   for (int i = 0; i < MAX_LIFECYCLE_EVENT; ++i) {
@@ -636,4 +636,3 @@ int main(int argc, char ** argv) {
   google::ParseCommandLineFlags(&argc, &argv, true);
   return RUN_ALL_TESTS();
 }
   google::ParseCommandLineFlags(&argc, &argv, true);
   return RUN_ALL_TESTS();
 }
-