Merge commit '0ff3239b962218267d37307e53906b31315a1cfc' into swift-3-indexing-model

This commit is the parent of the commit that implemented SE-0046
Establish consistent label behavior across all parameters including
first labels
This commit is contained in:
Dmitri Gribenko
2016-04-09 16:18:33 -07:00
208 changed files with 5579 additions and 4192 deletions

View File

@@ -139,7 +139,7 @@ public struct UTF8 : UnicodeCodec {
_didExhaustIterator = true
return .emptyInput
}
} else if(_decodeBuffer & 0x80 == 0) {
} else if (_decodeBuffer & 0x80 == 0) {
// ASCII in buffer. We don't refill the buffer so we can return
// to bufferless mode once we've exhausted it.
break refillBuffer