Fixed esp8266 compile error and set version date

This commit is contained in:
Ewoud
2023-01-14 17:45:57 +01:00
parent 90c0870e74
commit c3cc9d9803
3 changed files with 7 additions and 7 deletions

View File

@@ -549,7 +549,7 @@ class JMapC {
void deletejVectorMap() {
if (jVectorMap.size() > 0) {
Serial.println("delete jVectorMap");
for (int i=0; i<jVectorMap.size(); i++)
for (size_t i=0; i<jVectorMap.size(); i++)
delete jVectorMap[i].array;
jVectorMap.clear();
}