mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-25 05:20:34 +05:00
fix ToLower()
This commit is contained in:
parent
9cd3c4ff14
commit
fe838fbd75
@ -87,7 +87,7 @@ namespace ngcore
|
|||||||
std::string res;
|
std::string res;
|
||||||
res.reserve(s.size());
|
res.reserve(s.size());
|
||||||
|
|
||||||
for(auto & c : res)
|
for(auto & c : s)
|
||||||
res.push_back(tolower(c));
|
res.push_back(tolower(c));
|
||||||
|
|
||||||
return res;
|
return res;
|
||||||
|
Loading…
Reference in New Issue
Block a user