From 9697515f3e18f7609aadcc63c27802d5ebbc9497 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Tue, 4 Oct 2022 08:54:20 +0200 Subject: [PATCH] Define macro XBT_ATTRIB_DEPRECATED_v337. --- 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 c4a4e1f099..72b2f58cc2 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_v334(mesg)= \ XBT_ATTRIB_DEPRECATED_v335(mesg)= \ - XBT_ATTRIB_DEPRECATED_v336(mesg)= + XBT_ATTRIB_DEPRECATED_v336(mesg)= \ + XBT_ATTRIB_DEPRECATED_v337(mesg)= diff --git a/include/xbt/base.h b/include/xbt/base.h index a921d1becf..08a13d14f5 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.34)") #define XBT_ATTRIB_DEPRECATED_v336(mesg) \ XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.35)") +#define XBT_ATTRIB_DEPRECATED_v337(mesg) \ + XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.36)") /* Work around https://github.com/microsoft/vscode-cpptools/issues/4503 */ #ifdef __INTELLISENSE__ -- 2.20.1