From 5f0679d517394a4591e3855dcc7762b1e6963553 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Wed, 14 Jul 2021 21:23:34 +0200 Subject: [PATCH] Define macro XBT_ATTRIB_DEPRECATED_v333. --- 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 5872d9f002..3f66286387 100644 --- a/docs/source/Doxyfile +++ b/docs/source/Doxyfile @@ -69,4 +69,5 @@ PREDEFINED += \ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(cname,parent,desc)= \ XBT_ATTRIB_DEPRECATED_v330(mesg)= \ XBT_ATTRIB_DEPRECATED_v331(mesg)= \ - XBT_ATTRIB_DEPRECATED_v332(mesg)= + XBT_ATTRIB_DEPRECATED_v332(mesg)= \ + XBT_ATTRIB_DEPRECATED_v333(mesg)= diff --git a/include/xbt/base.h b/include/xbt/base.h index e8e091e676..2dc3fce17e 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.30)") #define XBT_ATTRIB_DEPRECATED_v332(mesg) \ 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)") /* Work around https://github.com/microsoft/vscode-cpptools/issues/4503 */ #ifdef __INTELLISENSE__ -- 2.20.1