mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 22:42:48 +03:00
0456719980
Weirdly, the rust compiler is suddenly complaining about this, when this file hasn't changed. ``` error[E0283]: type annotations needed --> window\src\os\windows\window.rs:2398:26 | 2398 | if vk <= u8::MAX.into() { | -- ^^^^ | | | type must be known at this point | = note: cannot satisfy `u32: PartialOrd<_>` help: try using a fully qualified path to specify the expected types | 2398 | if vk <= <u8 as Into<T>>::into(u8::MAX) { | ++++++++++++++++++++++ ~ error[E0283]: type annotations needed --> window\src\os\windows\window.rs:2415:32 | 2415 | if leader.1 <= u8::MAX.into() && key.1 <= u8::MAX.into() { | -- ^^^^ | | | type must be known at this point | = note: cannot satisfy `u32: PartialOrd<_>` help: try using a fully qualified path to specify the expected types | 2415 | if leader.1 <= <u8 as Into<T>>::into(u8::MAX) && key.1 <= u8::MAX.into() { | ++++++++++++++++++++++ ~ ``` |
||
---|---|---|
.. | ||
examples | ||
src | ||
build.rs | ||
Cargo.toml | ||
LICENSE.md |