diff test/suite/case.c @ 465:e2899b4ff713

- // -> /* */, mainly for consistency (but also for a few obscure compilers)
author Tassilo Philipp
date Wed, 02 Feb 2022 12:55:23 +0100
parents f5577f6bf97a
children 90dfdac91b9b
line wrap: on
line diff
--- a/test/suite/case.c	Wed Feb 02 11:03:06 2022 +0100
+++ b/test/suite/case.c	Wed Feb 02 12:55:23 2022 +0100
@@ -47,7 +47,7 @@
 int gID;
 int getId() { return gID; }
 
-// Generate function definitions.
+/* Generate function definitions. */
 #define VF0( id,                               S)  void S(                                                              ) {gID=id;                                                                                                                                    }
 #define VF1( id,A1,                            S)  void S(A1 a1                                                         ) {gID=id;g_##A1(a1,0);                                                                                                                       }
 #define VF2( id,A1,A2,                         S)  void S(A1 a1, A2 a2                                                  ) {gID=id;g_##A1(a1,0);g_##A2(a2,1);                                                                                                          }
@@ -62,7 +62,7 @@
 #include "case.h"
 
 
-// Generate function pointer table used for loop.
+/* Generate function pointer table used for loop. */
 #undef VF0
 #undef VF1
 #undef VF2