Remove static assert from utils.hpp
This commit is contained in:
parent
609835991a
commit
be001b4873
1 changed files with 0 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue