Upgrade to 2015-08-30 rustc nightly.

This commit is contained in:
Josh Matthews 2015-09-01 16:12:02 -04:00
parent 4d7cb95740
commit 11b9dd0b7a
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "num-macros"
version = "0.1.26"
version = "0.1.27"
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/rust-lang/num"

View File

@ -64,6 +64,7 @@ pub fn expand_deriving_from_primitive(cx: &mut ExtCtxt,
let inline = cx.meta_word(span, InternedString::new("inline"));
let attrs = vec!(cx.attribute(span, inline));
let trait_def = TraitDef {
is_unsafe: false,
span: span,
attributes: Vec::new(),
path: path!(num::FromPrimitive),