From: Arnaud Giersch Date: Tue, 22 Mar 2022 12:54:44 +0000 (+0100) Subject: Define macro XBT_ATTRIB_DEPRECATED_v336. X-Git-Tag: v3.32~414 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/74c1ec0ea946c5cb680969bc982a53326a1c0a59 Define macro XBT_ATTRIB_DEPRECATED_v336. --- diff --git a/docs/source/Doxyfile b/docs/source/Doxyfile index cc03b94436..c9ea8a311d 100644 --- a/docs/source/Doxyfile +++ b/docs/source/Doxyfile @@ -71,4 +71,5 @@ PREDEFINED += \ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(cname,parent,desc)= \ XBT_ATTRIB_DEPRECATED_v333(mesg)= \ XBT_ATTRIB_DEPRECATED_v334(mesg)= \ - XBT_ATTRIB_DEPRECATED_v335(mesg)= + XBT_ATTRIB_DEPRECATED_v335(mesg)= \ + XBT_ATTRIB_DEPRECATED_v336(mesg)= diff --git a/include/xbt/base.h b/include/xbt/base.h index 3f680db449..c6b9787e6c 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.33)") #define XBT_ATTRIB_DEPRECATED_v335(mesg) \ XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.34)") +#define XBT_ATTRIB_DEPRECATED_v336(mesg) \ + XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.35)") /* Work around https://github.com/microsoft/vscode-cpptools/issues/4503 */ #ifdef __INTELLISENSE__