Skip to content

Commit fc1ba1e

Browse files
committed
---
yaml --- r: 293119 b: refs/heads/tensorflow c: 4261de4 h: refs/heads/master i: 293117: ecfa772 293115: de221fc 293111: b16c504 293103: 9ea91fb 293087: e55a604 293055: 2cd92f2 292991: 9831f71 292863: 24b455d
1 parent 50e4962 commit fc1ba1e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ refs/tags/swift-DEVELOPMENT-SNAPSHOT-2018-04-25-a: 22f738a831d43aff2b9c9773bcb65
816816
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2018-05-08-a: 7d98cc16689baba5c8a3b90a9329bdcc1a12b4e9
817817
refs/heads/cherr42: a566ad54b073c2c56ac0a705d0a5bed9743135a5
818818
"refs/heads/codable_test_comment_fix": fc8f6824f7f347e1e8db55bff62db385c5728b5a
819-
refs/heads/tensorflow: dafba928a62f025cbe4fedc0c74a4c35f13dad81
819+
refs/heads/tensorflow: 4261de491d238276f6f184b980f0d82adb3ed466
820820
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-11-a: 8126fd7a652e2f70ad6d76505239e34fb2ef3e1a
821821
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-12-a: b3fd3dd84df6717f2e2e9df58c6d7e99fed57086
822822
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-13-a: 71135119579039dc321c5f65d870050fe36efda2

branches/tensorflow/stdlib/public/Darwin/Compression/Compression.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ public class InputFilter<D: DataProtocol> {
254254
// Move to next non-empty region if we are done with the current one
255255
let r = _data.regions
256256
while _regionRemaining == 0 {
257-
_regionIndex = r.index(after: _regionIndex)
257+
r.formIndex(after: &_regionIndex)
258258
if _regionIndex == r.endIndex { break }
259259
_regionRemaining = r[_regionIndex].count
260260
}
@@ -329,7 +329,7 @@ public class InputFilter<D: DataProtocol> {
329329
_eofReached = true
330330
_buf = nil
331331
} else {
332-
_buf = try InputFilterBuffer<D>(data!)
332+
_buf = try InputFilterBuffer(data!)
333333
}
334334
}
335335

0 commit comments

Comments
 (0)