diff options
author | John Hodge <tpg@mutabah.net> | 2016-09-25 18:00:47 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-09-25 18:00:47 +0800 |
commit | 07849e03b7d32ff28402ddd485326e00dbe2fedd (patch) | |
tree | 000e521dfebd5c860d8bd2ed1d4cde78415847f7 /src/macro_rules/macro_rules.hpp | |
parent | a2fc0567c434af1d5888db4f5c82df7f1e6b970f (diff) | |
download | mrust-07849e03b7d32ff28402ddd485326e00dbe2fedd.tar.gz |
macro_rules! - Rough (stubbed) support for :item
Diffstat (limited to 'src/macro_rules/macro_rules.hpp')
-rw-r--r-- | src/macro_rules/macro_rules.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/macro_rules/macro_rules.hpp b/src/macro_rules/macro_rules.hpp index f9cbd2f2..7846f4ba 100644 --- a/src/macro_rules/macro_rules.hpp +++ b/src/macro_rules/macro_rules.hpp @@ -65,6 +65,7 @@ struct MacroPatEnt: PAT_STMT,
PAT_BLOCK,
PAT_META,
+ PAT_ITEM, // :item
} type;
MacroPatEnt():
|