diff options
author | Raiki Tamura <tamaron1203@gmail.com> | 2022-12-19 01:48:54 +0900 |
---|---|---|
committer | Raiki Tamura <tamaron1203@gmail.com> | 2023-01-10 00:38:52 +0900 |
commit | 9e5769cf45cfc703e807e51b3ad301e123b05b55 (patch) | |
tree | d97961c7c3a95c95bf02dc9b8bc4271eb2a72967 /gcc/rust/ast/rust-ast.h | |
parent | 0152926ab36ba52153f3f457f6f3bb02bb274073 (diff) | |
download | gcc-9e5769cf45cfc703e807e51b3ad301e123b05b55.zip gcc-9e5769cf45cfc703e807e51b3ad301e123b05b55.tar.gz gcc-9e5769cf45cfc703e807e51b3ad301e123b05b55.tar.bz2 |
Implement declarative macro 2.0 parser
Signed-off-by: Raiki Tamura <tamaron1203@gmail.com>
Diffstat (limited to 'gcc/rust/ast/rust-ast.h')
-rw-r--r-- | gcc/rust/ast/rust-ast.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/rust/ast/rust-ast.h b/gcc/rust/ast/rust-ast.h index fc7af58e..1539e78 100644 --- a/gcc/rust/ast/rust-ast.h +++ b/gcc/rust/ast/rust-ast.h @@ -1350,11 +1350,6 @@ protected: } }; -// A macro item AST node - abstract base class -class MacroItem : public Item -{ -}; - // Item used in trait declarations - abstract base class class TraitItem { |