Skip to content

Commit

Permalink
Fix clang compilation for dependent template types
Browse files Browse the repository at this point in the history
  • Loading branch information
slonopotamus committed Jan 16, 2025
1 parent c6fe201 commit d00ca35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/UEST/Public/UEST.h
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ namespace Is
const auto& _M = Matcher; \
/* TODO: Can we make this const auto& ? */ \
const auto _V = Value; \
if (!ensureAlwaysMsgf(_M.Matches<decltype(_V)>(_V), TEXT("%s: %s must %s"), TEXT(#Value), *CQTestConvert::ToString(_V), *_M.Describe())) \
if (!ensureAlwaysMsgf(_M.template Matches<decltype(_V)>(_V), TEXT("%s: %s must %s"), TEXT(#Value), *CQTestConvert::ToString(_V), *_M.Describe())) \
{ \
return; \
} \
Expand Down

0 comments on commit d00ca35

Please sign in to comment.