Remove redundant semicolon

Swift SVN r22422
This commit is contained in:
Dmitri Hrybenko
2014-10-01 06:31:25 +00:00
parent 1fa4f422ba
commit 50c99099ec

View File

@@ -198,7 +198,7 @@ public struct ${Self}<T> : MutableCollectionType, Sliceable {
mutableAddress {
_makeMutableAndUnique()
_checkSubscript(index)
return _buffer.baseAddress + index;
return _buffer.baseAddress + index
}
}