core: Add deprecated for ns-3.43

This commit is contained in:
André Apitzsch
2024-05-30 10:32:58 +02:00
committed by Tom Henderson
parent ae248726dc
commit 1e2c304973
2 changed files with 8 additions and 0 deletions

View File

@@ -2299,6 +2299,7 @@ EXPAND_AS_DEFINED = ATTRIBUTE_ACCESSOR_DEFINE \
ATTRIBUTE_VALUE_IMPLEMENT_WITH_NAME \
NS_UNUSED_GLOBAL \
NS_DEPRECATED \
NS_DEPRECATED_3_43 \
NS_DEPRECATED_3_42 \
NS_DEPRECATED_3_41 \
NS_DEPRECATED_3_40

View File

@@ -94,6 +94,13 @@
*/
#define NS_DEPRECATED(msg) [[deprecated(msg)]]
/**
* \ingroup deprecation
* \def NS_DEPRECATED_3_43
* Tag for things deprecated in version ns-3.43.
*/
#define NS_DEPRECATED_3_43(msg) NS_DEPRECATED("Deprecated in ns-3.43: " msg)
/**
* \ingroup deprecation
* \def NS_DEPRECATED_3_42