File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ unsafe impl<T: Immutable + Trace> Trace for Box<T> {
228
228
unsafe impl < T : Immutable + Trace + HasNoGc > Trace for Box < T > {
229
229
fn trace ( _: & Self ) { }
230
230
const TRACE_TYPE_INFO : GcTypeInfo = GcTypeInfo :: new :: < Self > ( ) ;
231
- default const TRACE_CHILD_TYPE_INFO : [ Option <GcTypeInfo >; 8 ] = GcTypeInfo :: one_child:: < T > ( ) ;
231
+ const TRACE_CHILD_TYPE_INFO : [ Option < GcTypeInfo > ; 8 ] = GcTypeInfo :: one_child :: < T > ( ) ;
232
232
fn trace_transitive_type_info ( tti : & mut Tti ) {
233
233
tti. add_direct :: < Self > ( ) ;
234
234
tti. add_trans ( T :: trace_transitive_type_info) ;
@@ -302,7 +302,7 @@ struct Foo<'r> {
302
302
unsafe impl < ' r > Trace for Foo < ' r > {
303
303
fn trace ( _: & Foo < ' r > ) { }
304
304
const TRACE_TYPE_INFO : GcTypeInfo = GcTypeInfo :: new :: < Self > ( ) ;
305
- default const TRACE_CHILD_TYPE_INFO : [ Option <GcTypeInfo >; 8 ] =
305
+ const TRACE_CHILD_TYPE_INFO : [ Option < GcTypeInfo > ; 8 ] =
306
306
GcTypeInfo :: one_child :: < Gc < ' r , usize > > ( ) ;
307
307
fn trace_transitive_type_info ( tti : & mut Tti ) {
308
308
tti. add_direct :: < Self > ( ) ;
You can’t perform that action at this time.
0 commit comments