Explorar o código

Remove typename from ArgumentToValue specifier in MethodTrampoline

Lukas %!s(int64=6) %!d(string=hai) anos
pai
achega
e69c4f0f6a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Engine/source/console/engineAPI.h

+ 1 - 1
Engine/source/console/engineAPI.h

@@ -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>