diff --git a/rtgui/delayed.h b/rtgui/delayed.h index cf4f22bf8..b57d7300b 100644 --- a/rtgui/delayed.h +++ b/rtgui/delayed.h @@ -55,13 +55,13 @@ namespace delayed_helper // See https://aherrmann.github.io/programming/2016/02/28/unpacking-tuples-in-cpp14/ template - constexpr void apply_impl(F f, T t, index_sequence) + void apply_impl(F f, T t, index_sequence) { f(std::get(t)...); } template - constexpr void apply(F f, T t) + void apply(F f, T t) { apply_impl(f, t, make_index_sequence{}>{}); }