diff options
| author | bors <bors@rust-lang.org> | 2013-06-03 11:38:09 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-06-03 11:38:09 -0700 |
| commit | 5ddbc881c52a111da2e61772ec5f7b2826f3d9cb (patch) | |
| tree | aacb2186374fb9485104e24a5b984e9b310b30f9 /src/libstd/vec.rs | |
| parent | 4f6285fbf9001bd593e5424cc0f7de5609d8db55 (diff) | |
| parent | e900dba28a1ff1434e037c48da2e99948333a564 (diff) | |
| download | rust-5ddbc881c52a111da2e61772ec5f7b2826f3d9cb.tar.gz rust-5ddbc881c52a111da2e61772ec5f7b2826f3d9cb.zip | |
auto merge of #6913 : thestinger/rust/ptr, r=graydon
Closes #6607 I went with `RawPtr` instead of `UnsafePtr` because not all of these operations are `unsafe`, so to me it makes more sense to refer to it as a "raw" (not wrapped/abstracted) pointer. If we decide on something else in #6608 it can be renamed again.
Diffstat (limited to 'src/libstd/vec.rs')
| -rw-r--r-- | src/libstd/vec.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/vec.rs b/src/libstd/vec.rs index b748ca54cf4..255dc1c95f7 100644 --- a/src/libstd/vec.rs +++ b/src/libstd/vec.rs @@ -26,7 +26,7 @@ use old_iter::CopyableIter; use option::{None, Option, Some}; use ptr::to_unsafe_ptr; use ptr; -use ptr::Ptr; +use ptr::RawPtr; use sys; use uint; use unstable::intrinsics; |
