Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Define macro XBT_ATTRIB_DEPRECATED_v340.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 27 Nov 2023 08:41:25 +0000 (09:41 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 27 Nov 2023 08:41:25 +0000 (09:41 +0100)
(to use during the dev of v3.36)

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

index 80b57e9..0e1decc 100644 (file)
@@ -69,4 +69,5 @@ PREDEFINED             += \
     XBT_ATTRIB_UNUSED= \
     XBT_LOG_NEW_DEFAULT_SUBCATEGORY(cname,parent,desc)= \
     XBT_ATTRIB_DEPRECATED_v338(mesg)= \
-    XBT_ATTRIB_DEPRECATED_v339(mesg)=
+    XBT_ATTRIB_DEPRECATED_v339(mesg)= \
+    XBT_ATTRIB_DEPRECATED_v340(mesg)=
index 080c784..ceb0fb2 100644 (file)
@@ -46,6 +46,8 @@
   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)")
+#define XBT_ATTRIB_DEPRECATED_v340(mesg)                                                                               \
+  XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.39)")
 
 /* Work around https://github.com/microsoft/vscode-cpptools/issues/4503 */
 #ifdef __INTELLISENSE__