summary refs log tree commit diff
path: root/src/comp/syntax/ext/base.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/comp/syntax/ext/base.rs')
-rw-r--r--src/comp/syntax/ext/base.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp/syntax/ext/base.rs b/src/comp/syntax/ext/base.rs
index ed869e79f4e..b83a03c4343 100644
--- a/src/comp/syntax/ext/base.rs
+++ b/src/comp/syntax/ext/base.rs
@@ -7,10 +7,10 @@ import std::map::new_str_hash;
 import codemap;
 
 type syntax_expander =
-    fn(&ext_ctxt, span, &(@ast::expr)[], option::t[str]) -> @ast::expr ;
+    fn(&ext_ctxt, span, @ast::expr, option::t[str]) -> @ast::expr ;
 type macro_def = {ident: str, ext: syntax_extension};
 type macro_definer =
-    fn(&ext_ctxt, span, &(@ast::expr)[], option::t[str]) -> macro_def ;
+    fn(&ext_ctxt, span, @ast::expr, option::t[str]) -> macro_def ;
 
 tag syntax_extension {
     normal(syntax_expander);