File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/hir_ty/src/traits/chalk Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ impl chalk_ir::interner::Interner for Interner {
70
70
type InternedGoal = Arc < GoalData < Self > > ;
71
71
type InternedGoals = Vec < Goal < Self > > ;
72
72
type InternedSubstitution = Interned < InternedSubstitutionInner > ;
73
- type InternedProgramClause = Arc < chalk_ir:: ProgramClauseData < Self > > ;
73
+ type InternedProgramClause = chalk_ir:: ProgramClauseData < Self > ;
74
74
type InternedProgramClauses = Interned < InternedWrapper < Vec < chalk_ir:: ProgramClause < Self > > > > ;
75
75
type InternedQuantifiedWhereClauses = Interned < InternedWrapper < Vec < chalk_ir:: QuantifiedWhereClause < Self > > > > ;
76
76
type InternedVariableKinds = Interned < InternedVariableKindsInner > ;
@@ -315,7 +315,7 @@ impl chalk_ir::interner::Interner for Interner {
315
315
& self ,
316
316
data : chalk_ir:: ProgramClauseData < Self > ,
317
317
) -> Self :: InternedProgramClause {
318
- Arc :: new ( data)
318
+ data
319
319
}
320
320
321
321
fn program_clause_data < ' a > (
You can’t perform that action at this time.
0 commit comments