about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/parser
diff options
context:
space:
mode:
authorNilstrieb <48135649+Nilstrieb@users.noreply.github.com>2022-10-05 21:46:21 +0200
committerDylan DPC <dylan.dpc@gmail.com>2022-10-12 17:49:10 +0530
commit7bfef19844f20514cda40437847880ec8a663926 (patch)
tree4965e93a48de1c1f301e2bd9a2212ffad1e62b45 /compiler/rustc_parse/src/parser
parent0e3867338d66a016d6e6214a18537fbb715ed752 (diff)
downloadrust-7bfef19844f20514cda40437847880ec8a663926.tar.gz
rust-7bfef19844f20514cda40437847880ec8a663926.zip
Use `tidy-alphabetical` in the compiler
Diffstat (limited to 'compiler/rustc_parse/src/parser')
-rw-r--r--compiler/rustc_parse/src/parser/attr_wrapper.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/parser/attr_wrapper.rs b/compiler/rustc_parse/src/parser/attr_wrapper.rs
index 0dc05475ce9..81c051b8f35 100644
--- a/compiler/rustc_parse/src/parser/attr_wrapper.rs
+++ b/compiler/rustc_parse/src/parser/attr_wrapper.rs
@@ -459,7 +459,8 @@ fn make_token_stream(
 mod size_asserts {
     use super::*;
     use rustc_data_structures::static_assert_size;
-    // These are in alphabetical order, which is easy to maintain.
+    // tidy-alphabetical-start
     static_assert_size!(AttrWrapper, 16);
     static_assert_size!(LazyAttrTokenStreamImpl, 144);
+    // tidy-alphabetical-end
 }