From a2365f2adf83f722a8e9ff7c5775a2f4feef449d Mon Sep 17 00:00:00 2001 From: Vyacheslav Egorov Date: Fri, 6 Jan 2023 18:30:32 +0200 Subject: [PATCH] Fix build warning --- Analysis/src/TypeReduction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Analysis/src/TypeReduction.cpp b/Analysis/src/TypeReduction.cpp index 0e66d018..db79debf 100644 --- a/Analysis/src/TypeReduction.cpp +++ b/Analysis/src/TypeReduction.cpp @@ -27,7 +27,7 @@ struct RecursionGuard : RecursionLimiter , seen(seen) { // count has been incremented, which should imply that seen has already had an element pushed in. - LUAU_ASSERT(*count == seen->size()); + LUAU_ASSERT(size_t(*count) == seen->size()); } ~RecursionGuard()