aboutsummaryrefslogtreecommitdiffstats
path: root/ports-mgmt/sccache-overlay/files/patch-rust-1.91.0
blob: f2d3d3bba2bb0b70c912ff58d94ccb9152e58e8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- src/compiler/compiler.rs.orig	2025-11-09 17:42:58 UTC
+++ src/compiler/compiler.rs
@@ -699,10 +699,10 @@ macro_rules! cannot_cache {
 
 macro_rules! cannot_cache {
     ($why:expr) => {
-        return CompilerArguments::CannotCache($why, None);
+        return CompilerArguments::CannotCache($why, None)
     };
     ($why:expr, $extra_info:expr) => {
-        return CompilerArguments::CannotCache($why, Some($extra_info));
+        return CompilerArguments::CannotCache($why, Some($extra_info))
     };
 }