From 6184e844fbf42f980dfc3ab0d1b7f983251963a2 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 4 Nov 2013 22:43:22 -0800 Subject: [PATCH] Remove #[deriving]s on impls They seem to have been added by accident. --- src/libsyntax/ast.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index cf72455a83a..e108fe0081b 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -119,7 +119,6 @@ impl Encodable for Ident { } } -#[deriving(IterBytes)] impl Decodable for Ident { fn decode(d: &mut D) -> Ident { str_to_ident(d.read_str()) @@ -807,7 +806,6 @@ pub enum Onceness { Many } -#[deriving(IterBytes)] impl ToStr for Onceness { fn to_str(&self) -> ~str { match *self { @@ -901,7 +899,6 @@ pub enum purity { extern_fn, // declared with "extern fn" } -#[deriving(IterBytes)] impl ToStr for purity { fn to_str(&self) -> ~str { match *self {