From d00ca35c5879a18c50830ea4312ad1056359db27 Mon Sep 17 00:00:00 2001 From: Marat Radchenko Date: Thu, 16 Jan 2025 16:44:47 +0300 Subject: [PATCH] Fix clang compilation for dependent template types --- Source/UEST/Public/UEST.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/UEST/Public/UEST.h b/Source/UEST/Public/UEST.h index 2d11f47..199e8a7 100644 --- a/Source/UEST/Public/UEST.h +++ b/Source/UEST/Public/UEST.h @@ -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(_V), TEXT("%s: %s must %s"), TEXT(#Value), *CQTestConvert::ToString(_V), *_M.Describe())) \ + if (!ensureAlwaysMsgf(_M.template Matches(_V), TEXT("%s: %s must %s"), TEXT(#Value), *CQTestConvert::ToString(_V), *_M.Describe())) \ { \ return; \ } \