Merging in latest master

This commit is contained in:
Max Moiseev
2016-02-24 15:10:25 -08:00
parent c2c714b039
commit bb3eaaf308
78 changed files with 1048 additions and 375 deletions

View File

@@ -116,7 +116,8 @@ class CodecTest<Codec : TestableUnicodeCodec> {
let nsEncoded = nsEncodeBuffer[0..<(used/sizeof(CodeUnit.self))]
var encodeIndex = encodeBuffer.startIndex
let encodeOutput: (CodeUnit) -> Void = {
self.encodeBuffer[encodeIndex++] = $0
self.encodeBuffer[encodeIndex] = $0
encodeIndex += 1
}
var iter = nsEncoded.makeIterator()