Bläddra i källkod

Merge pull request #242 from rust-num/feat/do-not-duplicate-enum-definition

Fix code duplication error

(Overriding a CI failure due to `num-macros`.)
Josh Stone 8 år sedan
förälder
incheckning
d7cbdb509c
1 ändrade filer med 1 tillägg och 6 borttagningar
  1. 1 6
      derive/src/lib.rs

+ 1 - 6
derive/src/lib.rs

@@ -30,10 +30,7 @@ pub fn from_primitive(input: TokenStream) -> TokenStream {
 
     let variants = match ast.body {
         Enum(ref variants) => variants,
-        _ => {
-            panic!("`FromPrimitive` can be applied only to the enums, {} is not an enum",
-                   name)
-        }
+        _ => panic!("`FromPrimitive` can be applied only to the enums, {} is not an enum", name)
     };
 
     let mut idx = 0;
@@ -56,8 +53,6 @@ pub fn from_primitive(input: TokenStream) -> TokenStream {
         .collect();
 
     let res = quote! {
-        #ast
-
         impl ::num::traits::FromPrimitive for #name {
             fn from_i64(n: i64) -> Option<Self> {
                 Self::from_u64(n as u64)