summaryrefslogtreecommitdiff
path: root/src/macros.hpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-03-09 14:12:48 +0800
committerJohn Hodge <tpg@mutabah.net>2016-03-09 14:12:48 +0800
commitaeccbb23b717985e8719b3758e3cd28a0c0052f4 (patch)
tree7ccad85d2354817991c6148bb663f733a72151dc /src/macros.hpp
parent0571d0f4741106bcb43b512a66747e582b12ead7 (diff)
downloadmrust-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.hpp2
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);