mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 06:23:09 +02:00
another windows compiler warning
This commit is contained in:
parent
a53ea9342e
commit
3735585739
1 changed files with 1 additions and 1 deletions
|
|
@ -302,7 +302,7 @@ class Token {
|
|||
for (auto ch : text) {
|
||||
if (is_printable_ascii(ch)) {
|
||||
if ('A' <= ch && ch <= 'Z') ch += 'a' - 'A';
|
||||
scratch.push_back(ch);
|
||||
scratch.push_back((char)ch);
|
||||
} else return false;
|
||||
}
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue