mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
stdlib/Unicode: remove a stale comment
Swift SVN r20310
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user