diff options
| author | Keegan McAllister <kmcallister@mozilla.com> | 2014-12-18 20:48:26 -0800 |
|---|---|---|
| committer | Keegan McAllister <kmcallister@mozilla.com> | 2015-01-05 12:00:57 -0800 |
| commit | 5bf385be6a5ce267ac7cd9d1725178488e33131c (patch) | |
| tree | 7cfa66cf0c1acd0e6cf29efe0d77deb29d3a8946 /src/libcollections | |
| parent | fc584793237c388e9dca76ef406d1af34e453fe2 (diff) | |
| download | rust-5bf385be6a5ce267ac7cd9d1725178488e33131c.tar.gz rust-5bf385be6a5ce267ac7cd9d1725178488e33131c.zip | |
Rename macro_escape to macro_use
In the future we want to support
#[macro_use(foo, bar)]
mod macros;
but it's not an essential part of macro reform. Reserve the syntax for now.
Diffstat (limited to 'src/libcollections')
| -rw-r--r-- | src/libcollections/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcollections/lib.rs b/src/libcollections/lib.rs index 9214ec7e65b..142ac6f34e0 100644 --- a/src/libcollections/lib.rs +++ b/src/libcollections/lib.rs @@ -54,7 +54,8 @@ pub use vec_map::VecMap; // Needed for the vec! macro pub use alloc::boxed; -#[macro_escape] +#[cfg_attr(stage0, macro_escape)] +#[cfg_attr(not(stage0), macro_use)] mod macros; pub mod binary_heap; |
