Remove unused index packs

MSVC doesn't like them, and they're not longer needed
nix
Owen Green 5 years ago
parent 60659962a2
commit 0fc7272c38

@ -152,7 +152,7 @@ namespace client {
getTag(p, dummy); getTag(p, dummy);
} }
template <typename... Ts, size_t... Is> template <typename... Ts>
static void getTag(Packet& p, std::tuple<Ts...>&& t) static void getTag(Packet& p, std::tuple<Ts...>&& t)
{ {
ForEach(t,[&p](auto& x){getTag(p,x);}); ForEach(t,[&p](auto& x){getTag(p,x);});
@ -189,7 +189,7 @@ namespace client {
for(auto& x: s) convert(p,x); for(auto& x: s) convert(p,x);
} }
template <typename... Ts, size_t... Is> template <typename... Ts>
static void convert(Packet& p, std::tuple<Ts...>&& t) static void convert(Packet& p, std::tuple<Ts...>&& t)
{ {
ForEach(t,[&p](auto& x){ convert(p,x);}); ForEach(t,[&p](auto& x){ convert(p,x);});

Loading…
Cancel
Save