From 0fc7272c389ca07834e87511fe328211e3fa341c Mon Sep 17 00:00:00 2001 From: Owen Green Date: Mon, 4 Jan 2021 10:39:27 +0000 Subject: [PATCH] Remove unused index packs MSVC doesn't like them, and they're not longer needed --- include/wrapper/ArgsToClient.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wrapper/ArgsToClient.hpp b/include/wrapper/ArgsToClient.hpp index bed811d..2538a5c 100644 --- a/include/wrapper/ArgsToClient.hpp +++ b/include/wrapper/ArgsToClient.hpp @@ -152,7 +152,7 @@ namespace client { getTag(p, dummy); } - template + template static void getTag(Packet& p, std::tuple&& t) { ForEach(t,[&p](auto& x){getTag(p,x);}); @@ -189,7 +189,7 @@ namespace client { for(auto& x: s) convert(p,x); } - template + template static void convert(Packet& p, std::tuple&& t) { ForEach(t,[&p](auto& x){ convert(p,x);});