about summary refs log tree commit diff
path: root/src/libstd/rt/stack.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-06-03 11:38:09 -0700
committerbors <bors@rust-lang.org>2013-06-03 11:38:09 -0700
commit5ddbc881c52a111da2e61772ec5f7b2826f3d9cb (patch)
treeaacb2186374fb9485104e24a5b984e9b310b30f9 /src/libstd/rt/stack.rs
parent4f6285fbf9001bd593e5424cc0f7de5609d8db55 (diff)
parente900dba28a1ff1434e037c48da2e99948333a564 (diff)
downloadrust-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/rt/stack.rs')
-rw-r--r--src/libstd/rt/stack.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rt/stack.rs b/src/libstd/rt/stack.rs
index fa4b8f30f4e..b0e87a62c8b 100644
--- a/src/libstd/rt/stack.rs
+++ b/src/libstd/rt/stack.rs
@@ -9,7 +9,7 @@
 // except according to those terms.
 
 use container::Container;
-use ptr::Ptr;
+use ptr::RawPtr;
 use vec;
 use ops::Drop;
 use libc::{c_uint, uintptr_t};