1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-24 00:03:11 +01:00
This commit is contained in:
Marijn van der Werf
2016-10-16 21:22:18 +02:00
parent 334b8cca05
commit 6c54bba6f6
2 changed files with 5 additions and 3 deletions

View File

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

View File

@@ -14,6 +14,8 @@
*****************************************************************************/
#pragma endregion
#include <cstdarg>
#include "String.hpp"
namespace String {