meta: removed deprecated functions
This commit is contained in:
@@ -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.
|
||||
*
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user