From 808ac29cf37649ef74e7b942425ee5ce0c4b29d1 Mon Sep 17 00:00:00 2001 From: Avi Kivity Date: Sun, 8 Mar 2015 10:53:49 +0200 Subject: [PATCH] core: mark apply() inline --- core/apply.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/core/apply.hh b/core/apply.hh index 2201f0b96a..1419bcfa60 100644 --- a/core/apply.hh +++ b/core/apply.hh @@ -36,6 +36,7 @@ struct apply_helper, std::index_sequence> { }; template +inline auto apply(Func func, std::tuple&& args) { using helper = apply_helper, std::index_sequence_for>; return helper::apply(std::move(func), std::move(args));