From 5dad7f2f943ac487b3c5a94c3ad97b1bd65e6736 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Mon, 31 Jan 2022 08:47:18 +0100 Subject: [PATCH] Define macro XBT_ATTRIB_DEPRECATED_v335. --- docs/source/Doxyfile | 3 ++- include/xbt/base.h | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/source/Doxyfile b/docs/source/Doxyfile index b34b9d0bc8..35eefa048e 100644 --- a/docs/source/Doxyfile +++ b/docs/source/Doxyfile @@ -71,4 +71,5 @@ PREDEFINED += \ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(cname,parent,desc)= \ XBT_ATTRIB_DEPRECATED_v332(mesg)= \ XBT_ATTRIB_DEPRECATED_v333(mesg)= \ - XBT_ATTRIB_DEPRECATED_v334(mesg)= + XBT_ATTRIB_DEPRECATED_v334(mesg)= \ + XBT_ATTRIB_DEPRECATED_v335(mesg)= diff --git a/include/xbt/base.h b/include/xbt/base.h index 9429e76b50..8698afe6de 100644 --- a/include/xbt/base.h +++ b/include/xbt/base.h @@ -59,6 +59,8 @@ XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.32)") #define XBT_ATTRIB_DEPRECATED_v334(mesg) \ XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.33)") +#define XBT_ATTRIB_DEPRECATED_v335(mesg) \ + XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.34)") /* Work around https://github.com/microsoft/vscode-cpptools/issues/4503 */ #ifdef __INTELLISENSE__ -- 2.20.1