Skip to content

Update CHANGELOG for SE-0107: UnsafeRawPointer. #3920

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 1, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ Note: This is in reverse chronological order, so newer entries are added to the

Swift 3.0
---------
* [SE-0107](https://github.com/apple/swift-evolution/blob/master/proposals/0107-unsaferawpointer.md)

An `Unsafe[Mutable]RawPointer` type has been introduced. It
replaces `Unsafe[Mutable]Pointer<Void>`. Conversion from
`UnsafePointer<T>` to `UnsafePointer<U>` has been
disallowed. `Unsafe[Mutable]RawPointer` provides an API for untyped
memory access, and an API for binding memory to a type. Binding
memory allows for safe conversion between pointer types.

* [SE-0096](https://github.com/apple/swift-evolution/blob/master/proposals/0096-dynamictype.md):

The `dynamicType` keyword has been removed from Swift. In its place a new
Expand Down