From 4dcbc8f7a217480f2491f3714b5665ae976f749b Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Fri, 26 Jan 2024 12:50:50 +0000 Subject: [PATCH] Remove NS_DEPRECATED_3_36 methods --- src/core/CMakeLists.txt | 1 - src/core/model/deprecated.h | 7 ---- src/core/model/unused.h | 77 ------------------------------------- 3 files changed, 85 deletions(-) delete mode 100644 src/core/model/unused.h diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 93f35caff..2a0e08b0d 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -283,7 +283,6 @@ set(header_files model/type-traits.h model/uinteger.h model/uniform-random-bit-generator.h - model/unused.h model/valgrind.h model/vector.h model/warnings.h diff --git a/src/core/model/deprecated.h b/src/core/model/deprecated.h index cd8c5e64f..fbbac3b83 100644 --- a/src/core/model/deprecated.h +++ b/src/core/model/deprecated.h @@ -109,11 +109,4 @@ */ #define NS_DEPRECATED_3_37(msg) NS_DEPRECATED(msg) -/** - * \ingroup core - * \def NS_DEPRECATED_3_36 - * Tag for things deprecated in version ns-3.36. - */ -#define NS_DEPRECATED_3_36(msg) NS_DEPRECATED(msg) - #endif /* NS3_DEPRECATED_H */ diff --git a/src/core/model/unused.h b/src/core/model/unused.h deleted file mode 100644 index 9973f16aa..000000000 --- a/src/core/model/unused.h +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Copyright (c) 2012 Andrey Mazo - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation; - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - * Author: Andrey Mazo - */ - -#ifndef UNUSED_H -#define UNUSED_H - -#include "deprecated.h" - -/** - * \file - * \ingroup core - * NS_UNUSED and NS_UNUSED_GLOBAL macro definitions. - */ - -/** - * \ingroup core - * \def NS_UNUSED() - * Mark a local variable as unused. - * - * \deprecated Please use `[[maybe_unused]]` directly. This macro is being - * kept temporarily to support older code. - */ - -// We can't use NS_DEPRECATED_3_36 here because NS_UNUSED -// is used as a statement following a declaration: -// int x; -// NS_UNUSED (x); -// NS_DEPRECATED needs to be applied to the declaration -// NS_DEPRECATED_3_36 ("use double instead") int x; -// Instead we resort to a pragma - -#ifndef NS_UNUSED -#define NS_UNUSED(x) \ - _Pragma("GCC warning \"NS_UNUSED is deprecated, use [[maybe_unused]] directly\"")((void)(x)) -#endif - -/** - * \ingroup core - * \def NS_UNUSED_GLOBAL() - * Mark a variable at file scope as unused. - * - * \deprecated Please use `[[maybe_unused]]` directly. This macro is being - * kept temporarily to support older code. - */ -#ifndef NS_UNUSED_GLOBAL -#if defined(__GNUC__) -#define NS_UNUSED_GLOBAL(x) \ - NS_DEPRECATED_3_36("NS_UNUSED_GLOBAL is deprecated, use [[maybe_unused]] directly") \ - [[maybe_unused]] x -#elif defined(__LCLINT__) -#define NS_UNUSED_GLOBAL(x) \ - NS_DEPRECATED_3_36("NS_UNUSED_GLOBAL is deprecated, use [[maybe_unused]] directly") \ - /*@unused@*/ x -#else -#define NS_UNUSED_GLOBAL(x) \ - NS_DEPRECATED_3_36("NS_UNUSED_GLOBAL is deprecated, use [[maybe_unused]] directly") \ - x -#endif -#endif - -#endif /* UNUSED_H */