diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2023-01-09 15:48:12 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-09 15:48:12 +0000 |
commit | 3290293e16fa47cf59f0434343c1bf40497ede90 (patch) | |
tree | c98859a1c4cd79baaa13435bb072b4d42836b39e /gcc/rust/ast/rust-ast.h | |
parent | 48d32bc9cb05ea02ee0dc9d97d86ff1f559fae4f (diff) | |
parent | 9e5769cf45cfc703e807e51b3ad301e123b05b55 (diff) | |
download | gcc-3290293e16fa47cf59f0434343c1bf40497ede90.zip gcc-3290293e16fa47cf59f0434343c1bf40497ede90.tar.gz gcc-3290293e16fa47cf59f0434343c1bf40497ede90.tar.bz2 |
Merge #1708
1708: Parse declarative macro (decl_macro 2.0) r=CohenArthur a=tamaroning
This PR is currentry wip.
Opinions and advices are welcome!
Co-authored-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 { |