[stdlib] underscore APIs made visible by r22212

That commit made a protocol public.  The protocol was underscored but
some of its APIs were not, and those became unintentionally publicly
visible.  This commit corrects that problem.  Since Builtin.RawPointer
properties were being renamed from "value" to "_rawValue" for clarity,
COpaquePointer got that treatment too, even though it wasn't strictly
necessary, for consistency.

Swift SVN r22252
This commit is contained in:
Dave Abrahams
2014-09-24 02:50:43 +00:00
parent aa32a4401d
commit 66d2ba43c6
9 changed files with 59 additions and 59 deletions

View File

@@ -595,10 +595,10 @@ extension ${Self} {
func _cPointerArgs() -> (AnyObject?, Builtin.RawPointer) {
let p = _baseAddressIfContiguous
if _fastPath(p != nil || count == 0) {
return (_owner, p.value)
return (_owner, p._rawValue)
}
let n = _extractOrCopyToNativeArrayBuffer(self._buffer)
return (n.owner, n.baseAddress.value)
return (n.owner, n.baseAddress._rawValue)
}
}