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 1d27948 commit 560eb29Copy full SHA for 560eb29
crates/cli/src/lib.rs
@@ -91,6 +91,7 @@ enum Args {
91
}
92
93
#[derive(Parser)]
94
+#[allow(clippy::struct_excessive_bools)]
95
struct Install {
96
/// Changes the path that the extension is copied to. This will not
97
/// activate the extension unless `ini_path` is also passed.
src/zend/try_catch.rs
@@ -195,7 +195,7 @@ mod tests {
195
196
let _ = try_catch(|| {
197
let mut result = "foo".to_string();
198
- ptr = &mut result;
+ ptr = &raw mut result;
199
200
unsafe {
201
bailout();
0 commit comments