1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-24 05:42:03 +03:00

cargo fmt

latest rust changed the formatting options, so reformat to
avoid the CI being unhappy.
This commit is contained in:
Wez Furlong 2020-11-20 09:06:21 -08:00
parent 8c858ae6ce
commit fd3c062daf
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
// clippy hates bitflags
#![cfg_attr(feature = "cargo-clippy", allow(clippy::suspicious_arithmetic_impl, clippy::redundant_field_names))]
#![cfg_attr(
feature = "cargo-clippy",
allow(clippy::suspicious_arithmetic_impl, clippy::redundant_field_names)
)]
use super::VisibleRowIndex;
#[cfg(feature = "use_serde")]