Merge remote-tracking branch 'origin/main' into upgrade-llvm-zig

This commit is contained in:
Brendan Hansknecht 2024-12-12 13:29:10 -08:00
commit d74a3c0746
No known key found for this signature in database
GPG key ID: 0EA784685083E75B
28 changed files with 1040 additions and 166 deletions

View file

@ -677,7 +677,7 @@ pub fn handle_error_module(
pub fn handle_loading_problem(problem: LoadingProblem) -> std::io::Result<i32> {
match problem {
LoadingProblem::FormattedReport(report) => {
LoadingProblem::FormattedReport(report, _) => {
print!("{report}");
Ok(1)
}