about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2013-11-04 22:43:22 -0800
committerSteven Fackler <sfackler@gmail.com>2013-11-04 22:46:51 -0800
commit6184e844fbf42f980dfc3ab0d1b7f983251963a2 (patch)
treec90bda5254b78858af1efd84732deddce49d75e0 /src/libsyntax
parent72e432df9dc5f546d522654336a38213af69cac8 (diff)
downloadrust-6184e844fbf42f980dfc3ab0d1b7f983251963a2.tar.gz
rust-6184e844fbf42f980dfc3ab0d1b7f983251963a2.zip
Remove #[deriving]s on impls
They seem to have been added by accident.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ast.rs3
1 files changed, 0 insertions, 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<S:Encoder> Encodable<S> for Ident {
     }
 }
 
-#[deriving(IterBytes)]
 impl<D:Decoder> Decodable<D> 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 {