Update stdlib for memberwise access control.

As before, there may be more things marked @public than we actually want
public. Judicious use of the frontend option -disable-access-control may
help reduce the public surface area of the stdlib.

Swift SVN r19353
This commit is contained in:
Jordan Rose
2014-06-30 18:50:50 +00:00
parent 1f6a6fa4ad
commit 5e59d30c6f
24 changed files with 129 additions and 122 deletions

View File

@@ -39,7 +39,7 @@ extension String {
}
@public struct IndexType : BidirectionalIndex {
init(_ _position: Int, _ _core: _StringCore) {
@public init(_ _position: Int, _ _core: _StringCore) {
self._position = _position
self._core = _core
}