From ea4c214b04312f452c98437d9ecae73e01d42e5a Mon Sep 17 00:00:00 2001 From: Zero Fanker Date: Sun, 15 Dec 2024 23:40:01 -0500 Subject: [PATCH] silence compile warning . --- UnitTest/Waypoint_Test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnitTest/Waypoint_Test.cpp b/UnitTest/Waypoint_Test.cpp index 210727a..b1f9f6d 100644 --- a/UnitTest/Waypoint_Test.cpp +++ b/UnitTest/Waypoint_Test.cpp @@ -10,7 +10,7 @@ TEST(WaypointTest, SerdeTest) ASSERT_EQ(WaypointToString(0), "A"); ASSERT_EQ(StringToWaypoint("A"), 0); - for (auto idx = 0ull; idx < 702; ++idx) { + for (auto idx = 0; idx < 702; ++idx) { cout << "Waypoint " << idx << ": " << WaypointToString(idx) << endl; }