Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Avoid non-standard statement expressions.
[simgrid.git] / tools / smpi / generate_smpi_defines.pl
index fc0255b..fefb7d0 100755 (executable)
@@ -42,7 +42,7 @@ sub output_macro {
     print "#define ". uc($id) ." smpi_trace_set_call_location(__FILE__,__LINE__); call ". ucfirst $id ."\n";
   }
   else {
-    print "#define $id(...) ({ smpi_trace_set_call_location(__FILE__,__LINE__); $id(__VA_ARGS__); })\n";
+    print "#define $id(...) (smpi_trace_set_call_location(__FILE__, __LINE__), $id(__VA_ARGS__))\n";
   }
 }