diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2013-06-03 13:50:29 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2013-06-03 13:50:29 -0400 |
| commit | e900dba28a1ff1434e037c48da2e99948333a564 (patch) | |
| tree | aacb2186374fb9485104e24a5b984e9b310b30f9 /src/libstd/rt/stack.rs | |
| parent | 4f6285fbf9001bd593e5424cc0f7de5609d8db55 (diff) | |
| download | rust-e900dba28a1ff1434e037c48da2e99948333a564.tar.gz rust-e900dba28a1ff1434e037c48da2e99948333a564.zip | |
rename the Ptr trait to RawPtr
Closes #6607
Diffstat (limited to 'src/libstd/rt/stack.rs')
| -rw-r--r-- | src/libstd/rt/stack.rs | 2 |
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}; |
