Removed always-true condition

pull/31/head
Tatsuhiro Tsujikawa 2012-10-29 23:14:36 +09:00
parent 39da18f156
commit f60b956a48
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ bool inRFC5987AttrChar(const char c)
// Returns nonzero if |c| is in ISO/IEC 8859-1 character set.
bool isIso8859p1(unsigned char c)
{
return (0x20u <= c && c <= 0x7eu) || (0xa0u <= c && c <= 0xffu);
return (0x20u <= c && c <= 0x7eu) || 0xa0u <= c;
}
bool isLws(const char c)