Browse Source

gcc wants braces, msvc doesn't want empty braces. Just put nothing

Samuel Thibault 10 years ago
parent
commit
bc73a0d370
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/pi/SobolQRNG/sobol_primitives.c

+ 1 - 1
examples/pi/SobolQRNG/sobol_primitives.c

@@ -66,7 +66,7 @@
 const struct primitive sobol_primitives[] =
 {
     /* First dimension is a special case so this entry is actually ignored */
-    {1, 0, 0, 0},
+    {1, 0, 0 },
     {2, 1, 0, {1}},
     {3, 2, 1, {1, 3}},
     {4, 3, 1, {1, 3, 1}},