Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mishura4 committed Aug 25, 2023
1 parent 502dbb7 commit e7be36c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/dpp/utility.h
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ namespace dpp {
* @return Whether the expression `F(Args...)` is convertible to R
*/
template <typename F, typename R, typename... Args>
inline constexpr bool callable_returns_v = std::is_convertible_v<std::invoke_result_t<F, Args...>, R>
inline constexpr bool callable_returns_v = std::is_convertible_v<std::invoke_result_t<F, Args...>, R>;
#endif

} // namespace utility
Expand Down

0 comments on commit e7be36c

Please sign in to comment.