Remove #[deriving]s on impls
They seem to have been added by accident.
This commit is contained in:
parent
72e432df9d
commit
6184e844fb
@ -119,7 +119,6 @@ fn encode(&self, s: &mut S) {
|
||||
}
|
||||
}
|
||||
|
||||
#[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 {
|
||||
|
Loading…
Reference in New Issue
Block a user