Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Introduce XBT_ATTRIB_DEPRECATED_v330.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sun, 2 Feb 2020 20:16:41 +0000 (21:16 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sun, 2 Feb 2020 20:16:41 +0000 (21:16 +0100)
doc/Doxyfile.in
docs/source/Doxyfile
include/xbt/base.h

index e0762c9..ecab1a3 100644 (file)
@@ -1443,7 +1443,8 @@ PREDEFINED             = __cplusplus \
                         XBT_ATTRIB_NORETURN= \
                         XBT_ATTRIB_UNUSED= \
                          XBT_ATTRIB_DEPRECATED_v328(m)= \
-                         XBT_ATTRIB_DEPRECATED_v329(m)=
+                         XBT_ATTRIB_DEPRECATED_v329(m)= \
+                         XBT_ATTRIB_DEPRECATED_v330(m)=
 
 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
 # this tag can be used to specify a list of macro names that should be expanded.
index 8b91326..70c58d5 100644 (file)
@@ -61,4 +61,5 @@ PREDEFINED             += \
     XBT_ATTRIB_UNUSED= \
     XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s,c,l)= \
     XBT_ATTRIB_DEPRECATED_v328(m)= \
-    XBT_ATTRIB_DEPRECATED_v329(m)=
+    XBT_ATTRIB_DEPRECATED_v329(m)= \
+    XBT_ATTRIB_DEPRECATED_v330(m)=
index a81bdb2..8d6b05d 100644 (file)
@@ -57,6 +57,8 @@
   XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped in v3.28)")
 #define XBT_ATTRIB_DEPRECATED_v329(mesg)                                                                               \
   XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped in v3.29)")
+#define XBT_ATTRIB_DEPRECATED_v330(mesg)                                                                               \
+  XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped in v3.30)")
 
 #if !defined(__APPLE__)
 #  define XBT_ATTRIB_CONSTRUCTOR(prio) __attribute__((__constructor__(prio)))