From: Arnaud Giersch Date: Tue, 10 Dec 2019 08:23:11 +0000 (+0100) Subject: Be consistent on the number of indirections. X-Git-Tag: v3.25~291 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/94bbf4f893b0b58419d77d2ebf29b96918489440 Be consistent on the number of indirections. --- diff --git a/include/xbt/base.h b/include/xbt/base.h index 5dbeb504b5..bd19a3272f 100644 --- a/include/xbt/base.h +++ b/include/xbt/base.h @@ -95,7 +95,7 @@ /* Concatenate arguments. _XBT_CONCAT2 adds a level of indirection over _XBT_CONCAT. */ #define _XBT_CONCAT(a, b) a##b #define _XBT_CONCAT2(a, b) _XBT_CONCAT(a, b) -#define _XBT_CONCAT3(a, b, c) _XBT_CONCAT2(_XBT_CONCAT(a, b), c) +#define _XBT_CONCAT3(a, b, c) _XBT_CONCAT2(_XBT_CONCAT2(a, b), c) #define _XBT_CONCAT4(a, b, c, d) _XBT_CONCAT2(_XBT_CONCAT3(a, b, c), d) /*