Remove typename from ArgumentToValue specifier

This commit is contained in:
Lukas 2019-10-07 10:23:34 +02:00 committed by Lukas Aldershaab
parent c9609fbdbf
commit bcb75e21ac

View file

@ -364,7 +364,7 @@ private:
template<size_t I>
static typename fixed_tuple_element<I, fixed_tuple<ArgTs...>>::type getAndToType(const ArgsType& args) {
return typename EngineTypeTraits<typename fixed_tuple_element<I, fixed_tuple<ArgTs...>>::type>::ArgumentToValue(fixed_tuple_accessor<I>::get(args));
return EngineTypeTraits<typename fixed_tuple_element<I, fixed_tuple<ArgTs...>>::type>::ArgumentToValue(fixed_tuple_accessor<I>::get(args));
}
template<size_t ...I>