Skip to content
Snippets Groups Projects
Commit 0ffdf207 authored by Simon Oehrl's avatar Simon Oehrl
Browse files

Add another template disambiguator

parent e7c7510d
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ inline TMap<FString, FString> CreateParameterMap(ArgTypes&&... Arguments)
{
TMap<FString, FString> ParameterMap;
ParameterMap.Empty(sizeof...(ArgTypes)); // Preallocate to avoid allocations.
FillParameterMapImpl<ArgTypes...>::Invoke<0>(&ParameterMap, Forward<ArgTypes>(Arguments)...);
FillParameterMapImpl<ArgTypes...>::template Invoke<0>(&ParameterMap, Forward<ArgTypes>(Arguments)...);
return ParameterMap;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment