We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c8d1ec commit 37f9b17Copy full SHA for 37f9b17
grpc-sys/build.rs
@@ -70,7 +70,7 @@ fn clean_up_stale_cache(cxx_compiler: String) {
70
let cache_stale = f.lines().any(|l| {
71
let l = l.unwrap();
72
trim_start(&l, "CMAKE_CXX_COMPILER:").map_or(false, |s| {
73
- let mut splits = s.splitn(2, "=");
+ let mut splits = s.splitn(2, '=');
74
splits.next();
75
splits.next().map_or(false, |p| p != cxx_compiler)
76
})
0 commit comments