silence compile warning .

This commit is contained in:
Zero Fanker 2024-12-15 23:40:01 -05:00
parent aeb807ca16
commit ea4c214b04

View file

@ -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;
}