diff options
| author | bors <bors@rust-lang.org> | 2013-11-05 01:47:43 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-11-05 01:47:43 -0800 |
| commit | 92065ceb634872f53a1a402cf306fbf02550b00d (patch) | |
| tree | a6165a3d4e726568cbfb1e1c28b6091a066238bb /src/libsyntax | |
| parent | 379bda9e527809fcf149383ac52c4afd1328c649 (diff) | |
| parent | 6184e844fbf42f980dfc3ab0d1b7f983251963a2 (diff) | |
| download | rust-92065ceb634872f53a1a402cf306fbf02550b00d.tar.gz rust-92065ceb634872f53a1a402cf306fbf02550b00d.zip | |
auto merge of #10285 : sfackler/rust/weird-derivings, r=huonw
They seem to have been added by accident.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 6aec7380f40..2dd2629048b 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 { @@ -902,7 +900,6 @@ pub enum purity { extern_fn, // declared with "extern fn" } -#[deriving(IterBytes)] impl ToStr for purity { fn to_str(&self) -> ~str { match *self { |
