We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb6a153 commit fe82fc4Copy full SHA for fe82fc4
doc/doxygen.conf
@@ -2303,6 +2303,7 @@ EXPAND_AS_DEFINED = ATTRIBUTE_ACCESSOR_DEFINE \
2303
ATTRIBUTE_VALUE_IMPLEMENT_WITH_NAME \
2304
NS_UNUSED_GLOBAL \
2305
NS_DEPRECATED \
2306
+ NS_DEPRECATED_3_48 \
2307
NS_DEPRECATED_3_47 \
2308
NS_DEPRECATED_3_46 \
2309
NS_DEPRECATED_3_45 \
src/core/model/deprecated.h
@@ -83,6 +83,13 @@
83
*/
84
#define NS_DEPRECATED(msg) /** \deprecated msg */ [[deprecated(msg)]]
85
86
+/**
87
+ * @ingroup deprecation
88
+ * @def NS_DEPRECATED_3_48
89
+ * Tag for things deprecated in version ns-3.48.
90
+ */
91
+#define NS_DEPRECATED_3_48(msg) NS_DEPRECATED("Deprecated in ns-3.48: " msg)
92
+
93
/**
94
* @ingroup deprecation
95
* @def NS_DEPRECATED_3_47
0 commit comments