File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -364,10 +364,9 @@ class PathProbeType : public TypeCheckBase
364
364
PathProbeCandidate::TraitItemCandidate trait_item_candidate{trait_ref,
365
365
trait_item_ref,
366
366
impl};
367
- PathProbeCandidate candidate{candidate_type,
368
- trait_item_tyty,
369
- trait_ref->get_locus (),
370
- {trait_item_candidate}};
367
+
368
+ PathProbeCandidate candidate{candidate_type, trait_item_tyty,
369
+ trait_ref->get_locus (), trait_item_candidate};
371
370
candidates.push_back (std::move (candidate));
372
371
}
373
372
@@ -409,10 +408,9 @@ class PathProbeType : public TypeCheckBase
409
408
PathProbeCandidate::TraitItemCandidate trait_item_candidate{trait_ref,
410
409
trait_item_ref,
411
410
nullptr };
412
- PathProbeCandidate candidate{candidate_type,
413
- trait_item_tyty,
411
+ PathProbeCandidate candidate{candidate_type, trait_item_tyty,
414
412
trait_item_ref->get_locus (),
415
- { trait_item_candidate} };
413
+ trait_item_candidate};
416
414
candidates.push_back (std::move (candidate));
417
415
}
418
416
You can’t perform that action at this time.
0 commit comments