Commit 80a0627d authored by Paul's avatar Paul
Browse files

Fix warning on gcc

parent 74a3ac57
......@@ -87,6 +87,11 @@ constexpr void each_args(F f, Ts&&... xs)
swallow{(f(std::forward<Ts>(xs)), 0)...};
}
template <class F>
constexpr void each_args(F)
{
}
/// Implements a fix-point combinator
template <class R, class F>
detail::fix_f<R, F> fix(F f)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment