diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-09-29 08:14:12 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-09-29 08:14:12 -0700 |
| commit | e44393a953a4654aa14d37df588cf490e1120240 (patch) | |
| tree | 8b31a1a18eb94446c96afe510ac0d8bcb3bb3d8d /src/libstd | |
| parent | 55754ed893ae7c07e813bd64b3c272d3d741d1e0 (diff) | |
| parent | f8a180b36ed4d048dbbb88037c3f35afab6b64ff (diff) | |
| download | rust-e44393a953a4654aa14d37df588cf490e1120240.tar.gz rust-e44393a953a4654aa14d37df588cf490e1120240.zip | |
rollup merge of #17582 : kmcallister/gc-box
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) { |
