Remove static assert from utils.hpp

This commit is contained in:
sha512sum 2024-02-29 22:43:57 +00:00
parent 609835991a
commit be001b4873

View file

@ -280,7 +280,6 @@ inline constexpr auto Curry(F&& f) -> Curryer<std::remove_cvref_t<F>> {
return {.f = std::forward<F>(f), .data = Tuple{}}; return {.f = std::forward<F>(f), .data = Tuple{}};
}; };
static_assert(Curry([](auto... args) {return (0 + ... + args);})(1)(2)(3) == 6);
} // namespace utempl } // namespace utempl