You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning: field `0` is never read
--> src/llvm/types/ir.rs:115:11
|
115 | Other(LLVMValueRef),
| ----- ^^^^^^^^^^^^
| |
| field in this variant
|
= note: `#[warn(dead_code)]` on by default
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
115 | Other(()),
| ~~
error: usage of a legacy numeric constant
--> src/linker.rs:525:55
|
525 | format!("--unroll-max-upperbound={}", std::u32::MAX).into(),
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
note: the lint level is defined here
--> src/lib.rs:1:9
|
1 | #![deny(clippy::all)]
| ^^^^^^^^^^^
= note: `#[deny(clippy::legacy_numeric_constants)]` implied by `#[deny(clippy::all)]`
help: use the associated constant instead
|
525 | format!("--unroll-max-upperbound={}", u32::MAX).into(),
| ~~~~~~~~
error: usage of a legacy numeric constant
--> src/linker.rs:526:50
|
526 | format!("--unroll-threshold={}", std::u32::MAX).into(),
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
526 | format!("--unroll-threshold={}", u32::MAX).into(),
| ~~~~~~~~
0 commit comments