diff --git a/test/testpaint/FunctionCall.cpp b/test/testpaint/FunctionCall.cpp index c0074f34c9..8d7973b8c7 100644 --- a/test/testpaint/FunctionCall.cpp +++ b/test/testpaint/FunctionCall.cpp @@ -34,7 +34,7 @@ bool FunctionCall::AssertsEquals(std::vector 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]; diff --git a/test/testpaint/String.cpp b/test/testpaint/String.cpp index 0189d9cd5a..6260e2870d 100644 --- a/test/testpaint/String.cpp +++ b/test/testpaint/String.cpp @@ -14,6 +14,8 @@ *****************************************************************************/ #pragma endregion +#include + #include "String.hpp" namespace String { @@ -21,11 +23,11 @@ namespace String { { va_list args; char buffer[512]; - + va_start(args, format); vsnprintf(buffer, sizeof(buffer), format, args); va_end(args); - + return std::string(buffer); } };