X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/898b4287bda43070014e56b9716567c91165e081..2cfea93ddbd94debacaf5d7f8adb8e487aa2bb7a:/include/xbt/base.h diff --git a/include/xbt/base.h b/include/xbt/base.h index a04230bdce..08a13d14f5 100644 --- a/include/xbt/base.h +++ b/include/xbt/base.h @@ -1,6 +1,6 @@ /* xbt.h - Public interface to the xbt (simgrid's toolbox) */ -/* Copyright (c) 2004-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -53,14 +53,19 @@ #define XBT_ATTRIB_DEPRECATED(mesg) __attribute__((deprecated(mesg))) #endif -#define XBT_ATTRIB_DEPRECATED_v328(mesg) \ - XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.27)") -#define XBT_ATTRIB_DEPRECATED_v329(mesg) \ - XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.28)") -#define XBT_ATTRIB_DEPRECATED_v330(mesg) \ - XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.29)") -#define XBT_ATTRIB_DEPRECATED_v331(mesg) \ - XBT_ATTRIB_DEPRECATED(mesg " (this compatibility wrapper will be dropped after v3.30)") +#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)") +#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__ +#pragma diag_suppress 1094 +#endif #if !defined(__APPLE__) # define XBT_ATTRIB_CONSTRUCTOR(prio) __attribute__((__constructor__(prio)))