From: Arnaud Giersch Date: Wed, 14 Jul 2021 19:23:34 +0000 (+0200) Subject: Define macro XBT_ATTRIB_DEPRECATED_v333. X-Git-Tag: v3.29~222 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5f0679d517394a4591e3855dcc7762b1e6963553 Define macro XBT_ATTRIB_DEPRECATED_v333. --- diff --git a/docs/source/Doxyfile b/docs/source/Doxyfile index 5872d9f002..3f66286387 100644 --- a/docs/source/Doxyfile +++ b/docs/source/Doxyfile @@ -69,4 +69,5 @@ PREDEFINED += \ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(cname,parent,desc)= \ XBT_ATTRIB_DEPRECATED_v330(mesg)= \ XBT_ATTRIB_DEPRECATED_v331(mesg)= \ - XBT_ATTRIB_DEPRECATED_v332(mesg)= + XBT_ATTRIB_DEPRECATED_v332(mesg)= \ + XBT_ATTRIB_DEPRECATED_v333(mesg)= diff --git a/include/xbt/base.h b/include/xbt/base.h index e8e091e676..2dc3fce17e 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.30)") #define XBT_ATTRIB_DEPRECATED_v332(mesg) \ XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.31)") +#define XBT_ATTRIB_DEPRECATED_v333(mesg) \ + XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.32)") /* Work around https://github.com/microsoft/vscode-cpptools/issues/4503 */ #ifdef __INTELLISENSE__