From: Arnaud Giersch Date: Tue, 27 Jun 2023 06:46:56 +0000 (+0200) Subject: Define macro XBT_ATTRIB_DEPRECATED_v339. X-Git-Tag: v3.35~178^2~7 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/258e701ab0ee1e354fd237c0b06b5c52f206af24 Define macro XBT_ATTRIB_DEPRECATED_v339. (to use during the dev of v3.35) --- diff --git a/docs/source/Doxyfile b/docs/source/Doxyfile index 4e35aad538..4f745520a3 100644 --- a/docs/source/Doxyfile +++ b/docs/source/Doxyfile @@ -67,4 +67,5 @@ PREDEFINED += \ XBT_ATTRIB_UNUSED= \ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(cname,parent,desc)= \ XBT_ATTRIB_DEPRECATED_v336(mesg)= \ - XBT_ATTRIB_DEPRECATED_v338(mesg)= + XBT_ATTRIB_DEPRECATED_v338(mesg)= \ + XBT_ATTRIB_DEPRECATED_v339(mesg)= diff --git a/include/xbt/base.h b/include/xbt/base.h index 7f39cc7df7..a4c062d80e 100644 --- a/include/xbt/base.h +++ b/include/xbt/base.h @@ -46,6 +46,8 @@ XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.35)") #define XBT_ATTRIB_DEPRECATED_v338(mesg) \ XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.37)") +#define XBT_ATTRIB_DEPRECATED_v339(mesg) \ + XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.38)") /* Work around https://github.com/microsoft/vscode-cpptools/issues/4503 */ #ifdef __INTELLISENSE__