[stdlib] Suppress some warnings

internal structs shouldn't have public members: nag, nag.
This commit is contained in:
Dave Abrahams
2016-05-02 09:20:04 -07:00
parent efca93e632
commit c99f59e3e6
3 changed files with 3 additions and 3 deletions

View File

@@ -240,7 +240,7 @@ extension UnicodeScalar {
extension UnicodeScalar.UTF16View : RandomAccessCollection {
public var indices: CountableRange<Int> {
var indices: CountableRange<Int> {
return startIndex..<endIndex
}