Skip to content

Commit da5bf14

Browse files
committedApr 10, 2016
...
1 parent 7d85909 commit da5bf14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎Release/GacUIReflection.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2369,7 +2369,7 @@ PartialClass
23692369
template<typename TControl>
23702370
void LoadInstanceReference(const WString& name, TControl*& reference)
23712371
{
2372-
reference = ctorInstance.GetProperty(name).GetRawPtr()->SafeAggregationCast<TControl>();
2372+
reference = ctorInstance.GetProperty(name).GetRawPtr()->template SafeAggregationCast<TControl>();
23732373
}
23742374
public:
23752375
GuiInstancePartialClass(const WString& _className)

‎Source/Reflection/GuiInstancePartialClass.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ PartialClass
6161
template<typename TControl>
6262
void LoadInstanceReference(const WString& name, TControl*& reference)
6363
{
64-
reference = ctorInstance.GetProperty(name).GetRawPtr()->SafeAggregationCast<TControl>();
64+
reference = ctorInstance.GetProperty(name).GetRawPtr()->template SafeAggregationCast<TControl>();
6565
}
6666
public:
6767
GuiInstancePartialClass(const WString& _className)

0 commit comments

Comments
 (0)
Please sign in to comment.