diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-05-17 15:28:44 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-05-22 21:57:07 -0700 |
| commit | f3723cf7c486fd22544b71d27eca5ed7082c6dff (patch) | |
| tree | 6ea0b137120cac77a8b533ec16637b0c0de2fb5d /src/libsyntax/util | |
| parent | ebfc2b8e5671a8c56988e05f83c3b1eeaf2abb9a (diff) | |
| download | rust-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.rs | 5 |
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; |
