diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-06-20 05:39:45 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-06-20 09:23:20 +1000 |
| commit | 9981d61cdbaf4cdcfca8cb5ca953144f2294cc84 (patch) | |
| tree | ed6e7e39a50dedcb631edf2a3aa623828c7572b4 | |
| parent | b104fbec85ac819d11bf8bf0d9cc11d0b8fb737e (diff) | |
| download | rust-9981d61cdbaf4cdcfca8cb5ca953144f2294cc84.tar.gz rust-9981d61cdbaf4cdcfca8cb5ca953144f2294cc84.zip | |
Remove useless `tidy-alphabetical` markers.
rustfmt already sorts `use` declarations within the same group.
| -rw-r--r-- | compiler/rustc_fs_util/src/lib.rs | 2 | ||||
| -rw-r--r-- | compiler/rustc_lint_defs/src/lib.rs | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/compiler/rustc_fs_util/src/lib.rs b/compiler/rustc_fs_util/src/lib.rs index 5a9b15204d5..d376c24cb58 100644 --- a/compiler/rustc_fs_util/src/lib.rs +++ b/compiler/rustc_fs_util/src/lib.rs @@ -1,9 +1,7 @@ -// tidy-alphabetical-start use std::ffi::CString; use std::fs; use std::io; use std::path::{absolute, Path, PathBuf}; -// tidy-alphabetical-end // Unfortunately, on windows, it looks like msvcrt.dll is silently translating // verbatim paths under the hood to non-verbatim paths! This manifests itself as diff --git a/compiler/rustc_lint_defs/src/lib.rs b/compiler/rustc_lint_defs/src/lib.rs index 70330c44577..b3838f915f6 100644 --- a/compiler/rustc_lint_defs/src/lib.rs +++ b/compiler/rustc_lint_defs/src/lib.rs @@ -1,4 +1,3 @@ -// tidy-alphabetical-start pub use self::Level::*; use rustc_ast::node_id::NodeId; use rustc_ast::{AttrId, Attribute}; @@ -15,7 +14,6 @@ use rustc_span::edition::Edition; use rustc_span::symbol::MacroRulesNormalizedIdent; use rustc_span::{sym, symbol::Ident, Span, Symbol}; use rustc_target::spec::abi::Abi; -// tidy-alphabetical-end use serde::{Deserialize, Serialize}; |
