mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
Remove typename from ArgumentToValue specifier in MethodTrampoline
This commit is contained in:
parent
42ca155301
commit
e69c4f0f6a
|
|
@ -403,7 +403,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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue