merging from development + fixing linux

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
pappeste
2021-06-24 18:10:14 -07:00
committed by Esteban Papp
parent 20a4ec9b7d
commit 95914e3fd6
5 changed files with 9 additions and 9 deletions
@@ -50,8 +50,8 @@ namespace TestImpact
AZStd::vector<AZStd::string> coveringTests;
sourceCoveringTests.reserve(1U << 16); // Reserve for approx. 65k source files
const AZStd::string delim = "\n";
auto start = 0U;
auto end = sourceCoveringTestsListString.find(delim);
size_t start = 0U;
size_t end = sourceCoveringTestsListString.find(delim);
while (end != AZStd::string::npos)
{