From e973b2958d9863f2f9fba8fb8641e42202dc940b Mon Sep 17 00:00:00 2001 From: Anthony Ramine Date: Tue, 21 Feb 2017 11:10:30 +0100 Subject: [PATCH] Remove a useless cfg attribute --- components/jstraceable_derive/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/components/jstraceable_derive/lib.rs b/components/jstraceable_derive/lib.rs index 20e3a7cbe81..66b172d6a1d 100644 --- a/components/jstraceable_derive/lib.rs +++ b/components/jstraceable_derive/lib.rs @@ -7,7 +7,6 @@ extern crate proc_macro; extern crate syn; extern crate synstructure; -#[cfg(not(test))] #[proc_macro_derive(JSTraceable)] pub fn expand_token_stream(input: proc_macro::TokenStream) -> proc_macro::TokenStream { expand_string(&input.to_string()).parse().unwrap()