Explorar o código

Removed always-true condition

Tatsuhiro Tsujikawa %!s(int64=13) %!d(string=hai) anos
pai
achega
f60b956a48
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/util.cc

+ 1 - 1
src/util.cc

@@ -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)