meta: removed deprecated functions

This commit is contained in:
Michele Caini
2020-02-23 17:05:32 +01:00
parent 6ffaf11226
commit 1e76703144
2 changed files with 0 additions and 24 deletions

View File

@@ -400,12 +400,6 @@ public:
return meta_factory<Type, Type>{&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.
*

View File

@@ -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.