Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Define macro XBT_ATTRIB_DEPRECATED_v342.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 26 Jun 2023 14:09:28 +0000 (16:09 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 27 Nov 2023 08:45:02 +0000 (09:45 +0100)
(to use during the dev of v3.38)

docs/source/Doxyfile
include/xbt/base.h

index 436c083..2627719 100644 (file)
@@ -70,4 +70,5 @@ PREDEFINED             += \
     XBT_LOG_NEW_DEFAULT_SUBCATEGORY(cname,parent,desc)= \
     XBT_ATTRIB_DEPRECATED_v339(mesg)= \
     XBT_ATTRIB_DEPRECATED_v340(mesg)= \
-    XBT_ATTRIB_DEPRECATED_v341(mesg)=
+    XBT_ATTRIB_DEPRECATED_v341(mesg)= \
+    XBT_ATTRIB_DEPRECATED_v342(mesg)=
index 3d19e27..ba04b67 100644 (file)
@@ -48,6 +48,8 @@
   XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.39)")
 #define XBT_ATTRIB_DEPRECATED_v341(mesg)                                                                               \
   XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.40)")
+#define XBT_ATTRIB_DEPRECATED_v342(mesg)                                                                               \
+  XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.41)")
 
 /* Work around https://github.com/microsoft/vscode-cpptools/issues/4503 */
 #ifdef __INTELLISENSE__