Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Define XBT_ATTRIB_DEPRECATED_v325.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Fri, 5 Oct 2018 21:21:05 +0000 (23:21 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Fri, 5 Oct 2018 21:21:05 +0000 (23:21 +0200)
doc/Doxyfile.in
docs/source/Doxyfile
include/xbt/base.h

index 9c967a7..9e19c0b 100644 (file)
@@ -1464,7 +1464,8 @@ PREDEFINED             = __cplusplus \
                         XBT_ATTRIB_NORETURN= \
                         XBT_ATTRIB_UNUSED= \
                          XBT_ATTRIB_DEPRECATED_v323(m)= \
-                         XBT_ATTRIB_DEPRECATED_v324(m)=
+                         XBT_ATTRIB_DEPRECATED_v324(m)= \
+                         XBT_ATTRIB_DEPRECATED_v325(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 1fc3740..79fd2db 100644 (file)
@@ -39,4 +39,5 @@ PREDEFINED             += \
     XBT_ATTRIB_NORETURN= \
     XBT_ATTRIB_UNUSED= \
     XBT_ATTRIB_DEPRECATED_v323(m)= \
-    XBT_ATTRIB_DEPRECATED_v324(m)=
+    XBT_ATTRIB_DEPRECATED_v324(m)= \
+    XBT_ATTRIB_DEPRECATED_v325(m)=
index e0279ba..5dffa94 100644 (file)
@@ -75,6 +75,8 @@
   XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped in v3.23)") /* Will be dropped in v3.23 */
 #define XBT_ATTRIB_DEPRECATED_v324(mesg)                                                                               \
   XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped in v3.24)") /* Will be dropped in v3.24 */
+#define XBT_ATTRIB_DEPRECATED_v325(mesg)                                                                               \
+  XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped in v3.25)") /* Will be dropped in v3.25 */
 
 #if !defined(__APPLE__)
 #  define XBT_ATTRIB_CONSTRUCTOR(prio) __attribute__((__constructor__(prio)))