Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Parentheses around macro parameters.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Fri, 22 Nov 2019 21:05:13 +0000 (22:05 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sun, 24 Nov 2019 20:45:00 +0000 (21:45 +0100)
include/smpi/smpi_helpers.h
src/xbt/random_test.cpp

index 543f702..4578089 100644 (file)
@@ -33,8 +33,8 @@
 #define getopt_long(x, y, z, a, b) smpi_getopt_long((x), (y), (z), (a), (b))
 #define getopt_long_only(x, y, z, a, b) smpi_getopt_long_only((x), (y), (z), (a), (b))
 #ifndef SAMPI_OVERRIDEN_MALLOC
-#define malloc(x) smpi_shared_malloc_intercept(x, __FILE__, __LINE__)
-#define calloc(x,y) smpi_shared_calloc_intercept(x,y, __FILE__, __LINE__)
+#define malloc(x) smpi_shared_malloc_intercept((x), __FILE__, __LINE__)
+#define calloc(x, y) smpi_shared_calloc_intercept((x), (y), __FILE__, __LINE__)
 #define free(x) smpi_shared_free(x)
 #endif
 #endif
index 802836e..83ee865 100644 (file)
@@ -9,7 +9,7 @@
 #include <random>
 #include <cmath>
 
-#define EpsilonApprox(a) Catch::Matchers::WithinAbs(a, 100 * std::numeric_limits<double>::epsilon())
+#define EpsilonApprox(a) Catch::Matchers::WithinAbs((a), 100 * std::numeric_limits<double>::epsilon())
 
 TEST_CASE("xbt::random: Random Number Generation")
 {