diff --git a/core/base/dispatch_helper.hpp b/core/base/dispatch_helper.hpp index 8fb104c084e..36c664d80ff 100644 --- a/core/base/dispatch_helper.hpp +++ b/core/base/dispatch_helper.hpp @@ -25,7 +25,7 @@ using with_same_constness_t = std::conditional_t< /** * * @copydoc run + * typename Func, typename... Args>(T*, Func&&, Args&&...) * * @note this is the end case */ @@ -36,8 +36,8 @@ ReturnType run_impl(T* obj, Func&&, Args&&...) } /** - * @copydoc run + * @copydoc run(T*, Func&&, Args&&...) * * @note This has additionally the return type encoded. */ @@ -55,71 +55,78 @@ ReturnType run_impl(T* obj, Func&& f, Args&&... args) /** - * @copydoc run + * @copydoc run