update: servo for rust language change

This commit is contained in:
Youngmin Yoo 2013-05-09 10:50:57 +09:00
parent 93e7eb798c
commit 7c6e90ed89

View file

@ -4,11 +4,11 @@
{
macro_rules! move_ref(
{ $x:expr } => { unsafe { let y <- *ptr::addr_of(*$x); y } }
{ $x:expr } => { unsafe { let y <- *ptr::to_unsafe_ptr(*$x); y } }
)
macro_rules! move_val(
{ $x:expr } => { unsafe { let y <- *ptr::addr_of(*$x); y } }
{ $x:expr } => { unsafe { let y <- *ptr::to_unsafe_ptr(*$x); y } }
)
// select!