simplify CmpString case insensitive check

This commit is contained in:
Kelvin Sherlock 2013-02-20 20:17:14 -05:00
parent a497d5ec85
commit e56a311c2e

View File

@ -573,7 +573,6 @@ namespace OS
a.end(),
b.begin(),
[caseSens](char a, char b){
if (a == b) return true;
if (!caseSens)
{
a = toupper(a);