stdlib/Unicode: remove a stale comment

Swift SVN r20310
This commit is contained in:
Dmitri Hrybenko
2014-07-22 15:28:07 +00:00
parent e7b4e6c370
commit d5e7ffb2a1

View File

@@ -247,8 +247,6 @@ public struct UTF8 : UnicodeCodecType {
if (cu0 == 0xe0) {
return (cu1 >= 0xa0 && cu1 <= 0xbf) ? 2 : 1
}
// FIXME: this should be cu0!
// construct a test
if (cu0 >= 0xe1 && cu0 <= 0xec) {
return (cu1 >= 0x80 && cu1 <= 0xbf) ? 2 : 1
}