Remove #[deriving]s on impls

They seem to have been added by accident.
This commit is contained in:
Steven Fackler 2013-11-04 22:43:22 -08:00
parent 72e432df9d
commit 6184e844fb

View File

@ -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 {