From c3ecf1bab481dd59a92a603c3aa8c9816355c5d6 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Fri, 24 Mar 2017 11:27:24 +0100 Subject: [PATCH] Revert "Replace std::forward/std::make_tuple combo with std::forward_as_tuple" This reverts commit 352bc0409454032acc5e8fb256d5ed8f46445b5a. --- ext/luawrapper/include/LuaContext.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/luawrapper/include/LuaContext.hpp b/ext/luawrapper/include/LuaContext.hpp index 14e927fac3..5d95225fe1 100644 --- a/ext/luawrapper/include/LuaContext.hpp +++ b/ext/luawrapper/include/LuaContext.hpp @@ -1321,7 +1321,7 @@ private: RealReturnType; // we push the parameters on the stack - auto inArguments = Pusher>::push(state, std::forward_as_tuple((input)...)); + auto inArguments = Pusher>::push(state, std::make_tuple(std::forward(input)...)); // const int outArgumentsCount = std::tuple_size::value; -- 2.47.2