fix ToLower()

This commit is contained in:
mhochsteger@cerbsim.com 2022-02-23 19:16:30 +01:00
parent 9cd3c4ff14
commit fe838fbd75

View File

@ -87,7 +87,7 @@ namespace ngcore
std::string res;
res.reserve(s.size());
for(auto & c : res)
for(auto & c : s)
res.push_back(tolower(c));
return res;