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
Cargo clippy reports:
```
warning: usage of a legacy numeric method
--> prost/src/lib.rs:71:24
|
71 | if length > usize::max_value() as u64 {
| ^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
71 | if length > usize::MAX as u64 {
| ~~~
```
0 commit comments