From 49f9216cfa03f1a8bba590620f19c69f827f81c1 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Fri, 8 Oct 2021 10:09:13 +0200 Subject: [PATCH] Define macro XBT_ATTRIB_DEPRECATED_v334. --- 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 cc57fbc21a..9755bec84b 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_v331(mesg)= \ XBT_ATTRIB_DEPRECATED_v332(mesg)= \ - XBT_ATTRIB_DEPRECATED_v333(mesg)= + XBT_ATTRIB_DEPRECATED_v333(mesg)= \ + XBT_ATTRIB_DEPRECATED_v334(mesg)= diff --git a/include/xbt/base.h b/include/xbt/base.h index 6b4ecd021f..d95b798b28 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.31)") #define XBT_ATTRIB_DEPRECATED_v333(mesg) \ 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)") /* Work around https://github.com/microsoft/vscode-cpptools/issues/4503 */ #ifdef __INTELLISENSE__ -- 2.20.1