mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-23 15:52:55 +01:00
Fix MSVC
This commit is contained in:
@@ -34,7 +34,7 @@ bool FunctionCall::AssertsEquals(std::vector<function_call> expected, std::vecto
|
||||
return false;
|
||||
}
|
||||
|
||||
for (int i = 0; i < expected.size(); i++) {
|
||||
for (size_t i = 0; i < expected.size(); i++) {
|
||||
function_call expectedCall = expected[i];
|
||||
function_call actualCall = actual[i];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user