Stop using macro_escape as an inner attribute

In preparation for the rename.
This commit is contained in:
Keegan McAllister
2014-12-18 20:09:57 -08:00
parent 73806ddd0f
commit fc58479323
32 changed files with 55 additions and 47 deletions

View File

@@ -62,11 +62,20 @@
#![feature(default_type_params, unboxed_closures, associated_types)]
#![deny(missing_docs)]
#[macro_escape]
mod macros;
#[path = "num/float_macros.rs"] mod float_macros;
#[path = "num/int_macros.rs"] mod int_macros;
#[path = "num/uint_macros.rs"] mod uint_macros;
#[path = "num/float_macros.rs"]
#[macro_escape]
mod float_macros;
#[path = "num/int_macros.rs"]
#[macro_escape]
mod int_macros;
#[path = "num/uint_macros.rs"]
#[macro_escape]
mod uint_macros;
#[path = "num/int.rs"] pub mod int;
#[path = "num/i8.rs"] pub mod i8;