From 4709fec28c86ddfbc0b007ebfecba048edc8dd59 Mon Sep 17 00:00:00 2001 From: Varun Saini <61795485+vrn-sn@users.noreply.github.com> Date: Fri, 15 Nov 2024 13:15:39 -0800 Subject: [PATCH] Parser.test.cpp: auto (int) -> size_t --- tests/Parser.test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Parser.test.cpp b/tests/Parser.test.cpp index df600d68..30b0da1f 100644 --- a/tests/Parser.test.cpp +++ b/tests/Parser.test.cpp @@ -3735,7 +3735,7 @@ TEST_CASE_FIXTURE(Fixture, "complex_union_in_generic_ty") CHECK_EQ(unionTy->types.size, 3); // NOTE: These are `const char*` so we can compare them to `AstName`s later. std::vector expectedTypes{"number", "boolean", "string"}; - for (auto i = 0; i < expectedTypes.size(); i++) + for (size_t i = 0; i < expectedTypes.size(); i++) { auto ty = unionTy->types.data[i]->as(); LUAU_ASSERT(ty);