meta: drop temporary trampoline for meta_arg

This commit is contained in:
Michele Caini
2022-10-05 16:11:16 +02:00
parent e7762980ec
commit 71554b2c19

View File

@@ -181,16 +181,6 @@ template<typename Type>
return internal::meta_arg_node(Type{}, index, ctx);
}
/**
* @brief Returns the meta type of the i-th element of a list of arguments.
* @tparam Type Type list of the actual types of arguments.
* @return The meta type of the i-th element of the list of arguments.
*/
template<typename Type>
[[nodiscard]] static meta_type meta_arg_TODO(const std::size_t index) noexcept {
return meta_arg<Type>(index);
}
/**
* @brief Sets the value of a given variable.
* @tparam Type Reflected type to which the variable is associated.