From e7be36c4aa2b992c0fe0b4fa5531ab010921cfa4 Mon Sep 17 00:00:00 2001 From: Amber Ehrlich Date: Fri, 25 Aug 2023 17:18:27 -0400 Subject: [PATCH] fix --- include/dpp/utility.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dpp/utility.h b/include/dpp/utility.h index e67c89e336..8ad579c9ce 100644 --- a/include/dpp/utility.h +++ b/include/dpp/utility.h @@ -636,7 +636,7 @@ namespace dpp { * @return Whether the expression `F(Args...)` is convertible to R */ template - inline constexpr bool callable_returns_v = std::is_convertible_v, R> + inline constexpr bool callable_returns_v = std::is_convertible_v, R>; #endif } // namespace utility