diff --git a/source/shared_lib/sources/util/util.cpp b/source/shared_lib/sources/util/util.cpp index 34ab88d2c..4067bedc4 100644 --- a/source/shared_lib/sources/util/util.cpp +++ b/source/shared_lib/sources/util/util.cpp @@ -794,7 +794,7 @@ namespace Shared { string trimAllExceptNumbersAndPeriods(string str) { char current; - int startIndex, endIndex; + size_t startIndex, endIndex; for (startIndex = 0; startIndex < str.length(); startIndex++) { current = str[startIndex]; if ((current >= '0' && current <= '9') || current == '.')