From 8404ec1d3b96dfc3e2fafa7a0f663c67ac6fd95f Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Mon, 25 Jun 2018 11:11:41 +0200 Subject: [PATCH] Define XBT_ATTRIB_DEPRECATED_v324. --- doc/Doxyfile.in | 3 ++- include/xbt/base.h | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index edbd796ffb..1be4cec6c0 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -1462,7 +1462,8 @@ PREDEFINED = XBT_PUBLIC= \ XBT_INLINE= \ XBT_PRIVATE= \ XBT_ATTRIB_DEPRECATED_v322(m)= \ - XBT_ATTRIB_DEPRECATED_v323(m)= + XBT_ATTRIB_DEPRECATED_v323(m)= \ + XBT_ATTRIB_DEPRECATED_v324(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. diff --git a/include/xbt/base.h b/include/xbt/base.h index 53f71a36ce..d283304435 100644 --- a/include/xbt/base.h +++ b/include/xbt/base.h @@ -74,6 +74,8 @@ #define XBT_ATTRIB_DEPRECATED_v322(mesg) XBT_ATTRIB_DEPRECATED(mesg) /* Will be dropped in v3.22 */ #define XBT_ATTRIB_DEPRECATED_v323(mesg) \ 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 */ #if !defined(__APPLE__) # define XBT_ATTRIB_CONSTRUCTOR(prio) __attribute__((__constructor__(prio))) -- 2.20.1