diff options
| author | Keegan McAllister <kmcallister@mozilla.com> | 2014-09-26 19:54:27 -0700 |
|---|---|---|
| committer | Keegan McAllister <kmcallister@mozilla.com> | 2014-09-26 19:54:27 -0700 |
| commit | f8a180b36ed4d048dbbb88037c3f35afab6b64ff (patch) | |
| tree | d0434f4c9a9a93dcf251781adf634901b8198b60 /src/libstd | |
| parent | 5d653c17a656e8fe1572c7a695e33b188eda0597 (diff) | |
| download | rust-f8a180b36ed4d048dbbb88037c3f35afab6b64ff.tar.gz rust-f8a180b36ed4d048dbbb88037c3f35afab6b64ff.zip | |
Rename raw::Box to raw::GcBox
Fixes #17470.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/gc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/gc.rs b/src/libstd/gc.rs index 47b7426633c..ecef8e9ed90 100644 --- a/src/libstd/gc.rs +++ b/src/libstd/gc.rs @@ -89,7 +89,7 @@ impl<T: Default + 'static> Default for Gc<T> { } } -impl<T: 'static> raw::Repr<*const raw::Box<T>> for Gc<T> {} +impl<T: 'static> raw::Repr<*const raw::GcBox<T>> for Gc<T> {} impl<S: hash::Writer, T: hash::Hash<S> + 'static> hash::Hash<S> for Gc<T> { fn hash(&self, s: &mut S) { |
