Michele Caini пре 5 година
родитељ
комит
3b50ebae83
1 измењених фајлова са 5 додато и 1 уклоњено
  1. 5 1
      src/entt/signal/delegate.hpp

+ 5 - 1
src/entt/signal/delegate.hpp

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