Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomocavalieri committed Oct 6, 2024
1 parent 8b7e802 commit 04a451a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion compiler-core/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,7 @@ fn derivation_tree_to_pretty_error_message(
derivation_tree.collapse_no_versions();
let derivation_tree = simplify_error(derivation_tree);

pprint_error(0, &derivation_tree);
// TODO))
// This order is not deterministic, so sometimes it will default to the
// original version even though it's almost the same!!
Expand Down Expand Up @@ -612,7 +613,7 @@ fn merge_trees_step<'dt, P: Package, V: Version>(
cause1_p1,
cause1_r1.union(&cause2_r1),
cause1_p2,
cause1_r2.intersection(&cause2_r2),
cause1_r2.union(&cause2_r2),
))
}

Expand Down

0 comments on commit 04a451a

Please # to comment.