From 1e7670314451c31a091f43dfef2bf803e308e066 Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Sun, 23 Feb 2020 17:05:32 +0100 Subject: [PATCH] meta: removed deprecated functions --- src/entt/meta/factory.hpp | 6 ------ src/entt/meta/meta.hpp | 18 ------------------ 2 files changed, 24 deletions(-) diff --git a/src/entt/meta/factory.hpp b/src/entt/meta/factory.hpp index c0f8959b1..958df25f8 100644 --- a/src/entt/meta/factory.hpp +++ b/src/entt/meta/factory.hpp @@ -400,12 +400,6 @@ public: return meta_factory{&node->prop}; } - /*! @copydoc alias */ - [[deprecated("Use ::alias instead")]] - auto type(const ENTT_ID_TYPE value) ENTT_NOEXCEPT { - return alias(value); - } - /** * @brief Assigns a meta base to a meta type. * diff --git a/src/entt/meta/meta.hpp b/src/entt/meta/meta.hpp index 4c062fca8..25def3439 100644 --- a/src/entt/meta/meta.hpp +++ b/src/entt/meta/meta.hpp @@ -874,12 +874,6 @@ struct meta_data { return node->alias; } - /*! @copydoc alias*/ - [[deprecated("Use ::alias instead")]] - ENTT_ID_TYPE identifier() const ENTT_NOEXCEPT { - return alias(); - } - /*! @copydoc meta_base::parent */ inline meta_type parent() const ENTT_NOEXCEPT; @@ -1020,12 +1014,6 @@ struct meta_func { return node->alias; } - /*! @copydoc alias */ - [[deprecated("Use ::alias instead")]] - ENTT_ID_TYPE identifier() const ENTT_NOEXCEPT { - return alias(); - } - /*! @copydoc meta_base::parent */ inline meta_type parent() const ENTT_NOEXCEPT; @@ -1160,12 +1148,6 @@ public: return node->alias; } - /*! @copydoc alias */ - [[deprecated("Use ::alias instead")]] - ENTT_ID_TYPE identifier() const ENTT_NOEXCEPT { - return alias(); - } - /** * @brief Indicates whether a given meta type refers to void or not. * @return True if the underlying type is void, false otherwise.