doc: suppressed some warnings due to missing parameters

This commit is contained in:
Michele Caini
2020-03-11 15:36:14 +01:00
parent 9a3b585110
commit 23a73fcb7c

View File

@@ -700,7 +700,10 @@ public:
underlying_type::construct(entt);
}
/*! @copydoc emplace */
/**
* @copydoc emplace
* @param args Parameters to use to construct an object for the entity.
*/
template<typename... Args>
[[deprecated("use ::emplace instead")]]
void construct(const entity_type entt, Args &&... args) {
@@ -726,7 +729,10 @@ public:
underlying_type::construct(first, last);
}
/*! @copydoc insert */
/**
* @copydoc insert
* @param value An instance of the object to construct.
*/
template<typename It>
[[deprecated("use ::insert instead")]]
std::enable_if_t<std::is_same_v<typename std::iterator_traits<It>::value_type, entity_type>, void>