delegate: updated doc
This commit is contained in:
@@ -348,7 +348,11 @@ delegate(connect_arg_t<Candidate>, Type &&) ENTT_NOEXCEPT
|
||||
-> delegate<std::remove_pointer_t<internal::function_pointer_t<decltype(Candidate), Type>>>;
|
||||
|
||||
|
||||
/*! @brief Deduction guide. */
|
||||
/**
|
||||
* @brief Deduction guide.
|
||||
* @tparam Ret Return type of a function type.
|
||||
* @tparam Args Types of arguments of a function type.
|
||||
*/
|
||||
template<typename Ret, typename... Args>
|
||||
delegate(Ret(*)(const void *, Args...), const void * = nullptr) ENTT_NOEXCEPT
|
||||
-> delegate<Ret(Args...)>;
|
||||
|
||||
Reference in New Issue
Block a user