1
1
mirror of https://github.com/github/semantic.git synced 2024-12-26 08:25:19 +03:00

BoundsCheckedArray.init is public.

This commit is contained in:
Rob Rix 2015-10-07 19:26:35 -04:00
parent 55a54be79f
commit 9c98bc187a

View File

@ -1,5 +1,5 @@
public struct BoundsCheckedArray<Element>: CollectionType {
init(array: [Element]) {
public init(array: [Element]) {
self.array = array
}