FindAdv: Casting to satisfy Windows compiler

Thanks to Jean-Marc Lasgouttes
This commit is contained in:
Kornel Benko 2019-03-18 09:38:34 +01:00
parent 9a15d35443
commit 13b3808aa0

View File

@ -1347,7 +1347,7 @@ void Intervall::removeAccents()
string key = sub.str(1);
if (accents.find(key) != accents.end()) {
string val = accents[key];
size_t pos = sub.position(0);
size_t pos = sub.position(size_t(0));
for (size_t i = 0; i < val.size(); i++) {
par[pos+i] = val[i];
}