File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
ReflectionTemplateLib/rtl/dispatch Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ namespace rtl::dispatch
2020 template <class return_t , class ...signature_t >
2121 struct aware_return
2222 {
23- constexpr static void get_lambda_void (const functor& fn, traits::normal_sign_t <signature_t >&&... params) noexcept
23+ constexpr static auto get_lambda_void (const functor& fn, traits::normal_sign_t <signature_t >&&... params) noexcept
2424 {
2525 if constexpr (std::is_void_v<return_t >)
2626 {
@@ -29,7 +29,7 @@ namespace rtl::dispatch
2929 }
3030 }
3131
32- constexpr static std::any get_lambda_any_return (const functor& fn, traits::normal_sign_t <signature_t >&&... params) noexcept
32+ constexpr static auto get_lambda_any_return (const functor& fn, traits::normal_sign_t <signature_t >&&... params) noexcept
3333 {
3434 if constexpr (!std::is_void_v<return_t >)
3535 {
You can’t perform that action at this time.
0 commit comments