about summary refs log tree commit diff
path: root/src/libsyntax/util
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2013-05-17 15:28:44 -0700
committerPatrick Walton <pcwalton@mimiga.net>2013-05-22 21:57:07 -0700
commitf3723cf7c486fd22544b71d27eca5ed7082c6dff (patch)
tree6ea0b137120cac77a8b533ec16637b0c0de2fb5d /src/libsyntax/util
parentebfc2b8e5671a8c56988e05f83c3b1eeaf2abb9a (diff)
downloadrust-f3723cf7c486fd22544b71d27eca5ed7082c6dff.tar.gz
rust-f3723cf7c486fd22544b71d27eca5ed7082c6dff.zip
libextra: Rename the actual metadata names of libcore to libstd and libstd to libextra
Diffstat (limited to 'src/libsyntax/util')
-rw-r--r--src/libsyntax/util/interner.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libsyntax/util/interner.rs b/src/libsyntax/util/interner.rs
index 5d49c8cd75d..e2736a00564 100644
--- a/src/libsyntax/util/interner.rs
+++ b/src/libsyntax/util/interner.rs
@@ -12,6 +12,11 @@
 // allows bidirectional lookup; i.e. given a value, one can easily find the
 // type, and vice versa.
 
+// allow the interner_key macro to escape this module:
+#[macro_escape];
+
+use core::prelude::*;
+
 use core::cmp::Equiv;
 use core::hashmap::HashMap;
 use syntax::parse::token::StringRef;