Преглед на файлове

Remove typename from ArgumentToValue specifier

Lukas преди 6 години
родител
ревизия
bcb75e21ac
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      Engine/source/console/engineAPI.h

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

@@ -364,7 +364,7 @@ private:
 
 
    template<size_t I>
    template<size_t I>
    static typename fixed_tuple_element<I, fixed_tuple<ArgTs...>>::type getAndToType(const ArgsType& args) {
    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>
    template<size_t ...I>