diff options
| author | Aaron Hill <aa1ronham@gmail.com> | 2020-08-21 22:11:41 -0400 |
|---|---|---|
| committer | Aaron Hill <aa1ronham@gmail.com> | 2020-09-10 17:58:14 -0400 |
| commit | fec047907572ef84bf128da9c4026e5ae5bcaa34 (patch) | |
| tree | 0edd839e20777e62309a68d07350313db9586db4 /compiler/rustc_ast/src | |
| parent | 156ef2bee8f3941d4d7e3414652b803348ccd165 (diff) | |
| download | rust-fec047907572ef84bf128da9c4026e5ae5bcaa34.tar.gz rust-fec047907572ef84bf128da9c4026e5ae5bcaa34.zip | |
Fully integrate token collection for additional AST structs
This commit contains miscellaneous changes that don't fit into any of the other commits in this PR
Diffstat (limited to 'compiler/rustc_ast/src')
| -rw-r--r-- | compiler/rustc_ast/src/token.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_ast/src/token.rs b/compiler/rustc_ast/src/token.rs index 09c0983bb9d..d5b3e87adc3 100644 --- a/compiler/rustc_ast/src/token.rs +++ b/compiler/rustc_ast/src/token.rs @@ -700,7 +700,7 @@ pub enum Nonterminal { // `Nonterminal` is used a lot. Make sure it doesn't unintentionally get bigger. #[cfg(target_arch = "x86_64")] -rustc_data_structures::static_assert_size!(Nonterminal, 40); +rustc_data_structures::static_assert_size!(Nonterminal, 48); #[derive(Debug, Copy, Clone, PartialEq, Encodable, Decodable)] pub enum NonterminalKind { |
