Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Define XBT_ATTRIB_DEPRECATED_v328.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 10 Oct 2019 21:16:00 +0000 (23:16 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 10 Oct 2019 21:21:03 +0000 (23:21 +0200)
doc/Doxyfile.in
docs/source/Doxyfile
include/xbt/base.h

index b641cb4..328c001 100644 (file)
@@ -1443,7 +1443,8 @@ PREDEFINED             = __cplusplus \
                         XBT_ATTRIB_NORETURN= \
                         XBT_ATTRIB_UNUSED= \
                          XBT_ATTRIB_DEPRECATED_v325(m)= \
-                         XBT_ATTRIB_DEPRECATED_v327(m)=
+                         XBT_ATTRIB_DEPRECATED_v327(m)= \
+                         XBT_ATTRIB_DEPRECATED_v328(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 22cefd9..c6235c9 100644 (file)
@@ -42,4 +42,5 @@ PREDEFINED             += \
     XBT_ATTRIB_NORETURN= \
     XBT_ATTRIB_UNUSED= \
     XBT_ATTRIB_DEPRECATED_v325(m)= \
-    XBT_ATTRIB_DEPRECATED_v327(m)=
+    XBT_ATTRIB_DEPRECATED_v327(m)= \
+    XBT_ATTRIB_DEPRECATED_v328(m)=
index 1f49c1b..871deba 100644 (file)
@@ -72,6 +72,8 @@
   XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped in v3.25)") /* Will be dropped in v3.25 */
 #define XBT_ATTRIB_DEPRECATED_v327(mesg)                                                                               \
   XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped in v3.27)") /* Will be dropped in v3.27 */
+#define XBT_ATTRIB_DEPRECATED_v328(mesg)                                                                               \
+  XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped in v3.28)") /* Will be dropped in v3.28 */
 
 #if !defined(__APPLE__)
 #  define XBT_ATTRIB_CONSTRUCTOR(prio) __attribute__((__constructor__(prio)))