diff options
author | John Hodge <tpg@mutabah.net> | 2016-03-09 14:12:48 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-03-09 14:12:48 +0800 |
commit | aeccbb23b717985e8719b3758e3cd28a0c0052f4 (patch) | |
tree | 7ccad85d2354817991c6148bb663f733a72151dc /src/macros.hpp | |
parent | 0571d0f4741106bcb43b512a66747e582b12ead7 (diff) | |
download | mrust-aeccbb23b717985e8719b3758e3cd28a0c0052f4.tar.gz |
Parse - Remove module stack (was for macros), yield stream from macros
Diffstat (limited to 'src/macros.hpp')
-rw-r--r-- | src/macros.hpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/macros.hpp b/src/macros.hpp index 14b4add2..ff6f0dbd 100644 --- a/src/macros.hpp +++ b/src/macros.hpp @@ -147,8 +147,6 @@ public: /// A sigle 'macro_rules!' block
typedef ::std::vector<MacroRule> MacroRules;
-extern const LList<AST::Module*>* Macro_GetModule();
-extern void Macro_SetModule(const LList<AST::Module*>& mod);
extern ::std::unique_ptr<TokenStream> Macro_InvokeRules(const char *name, const MacroRules& rules, TokenTree input);
extern ::std::unique_ptr<TokenStream> Macro_Invoke(const TokenStream& lex, const ::std::string& name, TokenTree input);
|