From 74c1ec0ea946c5cb680969bc982a53326a1c0a59 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Tue, 22 Mar 2022 13:54:44 +0100 Subject: [PATCH] Define macro XBT_ATTRIB_DEPRECATED_v336. --- 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 cc03b94436..c9ea8a311d 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_v333(mesg)= \ XBT_ATTRIB_DEPRECATED_v334(mesg)= \ - XBT_ATTRIB_DEPRECATED_v335(mesg)= + XBT_ATTRIB_DEPRECATED_v335(mesg)= \ + XBT_ATTRIB_DEPRECATED_v336(mesg)= diff --git a/include/xbt/base.h b/include/xbt/base.h index 3f680db449..c6b9787e6c 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.33)") #define XBT_ATTRIB_DEPRECATED_v335(mesg) \ XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.34)") +#define XBT_ATTRIB_DEPRECATED_v336(mesg) \ + XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.35)") /* Work around https://github.com/microsoft/vscode-cpptools/issues/4503 */ #ifdef __INTELLISENSE__ -- 2.20.1