compiler warning

This commit is contained in:
john30
2017-05-13 18:33:00 +02:00
parent 92f575a090
commit bf0fcd081d
4 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ int main() {
vector<string> row;
templates->readLineFromStream("inline", false, &dummystr, &lineNo, &row, &errorDescription, NULL, NULL);
const DataField* fields = NULL;
for (size_t i = 0; i < sizeof(checks) / sizeof(checks[0]); i++) {
for (unsigned int i = 0; i < sizeof(checks) / sizeof(checks[0]); i++) {
string check[5] = checks[i];
istringstream isstr(check[0]);
string expectStr = check[1];