From be001b4873138212aeea79949fb10b82e2b947cb Mon Sep 17 00:00:00 2001 From: sha512sum Date: Thu, 29 Feb 2024 22:43:57 +0000 Subject: [PATCH] Remove static assert from utils.hpp --- include/utempl/utils.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/utempl/utils.hpp b/include/utempl/utils.hpp index 142ccfb..c42c9c9 100644 --- a/include/utempl/utils.hpp +++ b/include/utempl/utils.hpp @@ -280,7 +280,6 @@ inline constexpr auto Curry(F&& f) -> Curryer> { return {.f = std::forward(f), .data = Tuple{}}; }; -static_assert(Curry([](auto... args) {return (0 + ... + args);})(1)(2)(3) == 6); } // namespace utempl