diff options
| author | xales <xales@naveria.com> | 2014-01-28 19:29:10 -0500 |
|---|---|---|
| committer | xales <xales@naveria.com> | 2014-01-29 20:31:03 -0500 |
| commit | d7f97e3018ac664058a507d207676f30fda4bfe4 (patch) | |
| tree | 8e2e3d3983954b0976003d00139963da1a7614d9 /src/libstd/rt | |
| parent | f84b7291e7606b35e800070bd826e4c2e2154228 (diff) | |
| download | rust-d7f97e3018ac664058a507d207676f30fda4bfe4.tar.gz rust-d7f97e3018ac664058a507d207676f30fda4bfe4.zip | |
Rename std::borrow to std::reference.
Fixes #11814
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/task.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/rt/task.rs b/src/libstd/rt/task.rs index e99e7fa4edd..09b91c138bc 100644 --- a/src/libstd/rt/task.rs +++ b/src/libstd/rt/task.rs @@ -14,7 +14,7 @@ //! to implement this. use any::AnyOwnExt; -use borrow; +use reference; use cast; use cleanup; use clone::Clone; @@ -287,7 +287,7 @@ impl Task { impl Drop for Task { fn drop(&mut self) { - rtdebug!("called drop for a task: {}", borrow::to_uint(self)); + rtdebug!("called drop for a task: {}", reference::to_uint(self)); rtassert!(self.destroyed); } } |
