From: Arnaud Giersch Date: Tue, 15 Dec 2020 22:01:53 +0000 (+0100) Subject: Introduce next XBT_DEPRECATED macro. X-Git-Tag: v3.27~616 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/74ac4b4589eadf949ab52c979e9089f4fca76ba7?ds=inline Introduce next XBT_DEPRECATED macro. --- diff --git a/include/xbt/base.h b/include/xbt/base.h index 0755d22fa3..1923b418d6 100644 --- a/include/xbt/base.h +++ b/include/xbt/base.h @@ -59,6 +59,8 @@ XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.28)") #define XBT_ATTRIB_DEPRECATED_v330(mesg) \ XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.29)") +#define XBT_ATTRIB_DEPRECATED_v331(mesg) \ + XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.30)") #if !defined(__APPLE__) # define XBT_ATTRIB_CONSTRUCTOR(prio) __attribute__((__constructor__(prio)))