Procházet zdrojové kódy

Add typename qualifier to identify the FunctionSignature in MethodWrapper

Ole Krüger před 10 roky
rodič
revize
2c3767c474
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      lib/luwra/wrappers.hpp

+ 1 - 1
lib/luwra/wrappers.hpp

@@ -127,7 +127,7 @@ template <
 >
 constexpr CFunction WrapMethod =
 	WrapFunction<
-		internal::MethodWrapper<T, S>::FunctionSignature,
+		typename internal::MethodWrapper<T, S>::FunctionSignature,
 		internal::MethodWrapper<T, S>::template delegate<MethodPointer>
 	>;