Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge pull request #64 from Ogeon/master
Browse files Browse the repository at this point in the history
Rust update: `DeepClone` was removed (rust-lang/rust#12706)
  • Loading branch information
chris-morgan committed Mar 10, 2014
2 parents 648eee6 + 26a1a28 commit a2fe5eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/http/headers/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use headers::serialization_utils::normalise_header_name;

/// A value for the Connection header. Note that should it be a ``Token``, the string is in
/// normalised header case (e.g. "Keep-Alive").
#[deriving(Clone, DeepClone, Eq)]
#[deriving(Clone, Eq)]
pub enum Connection {
Token(~str),
Close,
Expand Down
2 changes: 1 addition & 1 deletion src/http/headers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pub mod transfer_encoding;

pub type DeltaSeconds = u64;

#[deriving(Clone, DeepClone, Eq)]
#[deriving(Clone, Eq)]
pub enum ConsumeCommaLWSResult {
CommaConsumed,
EndOfValue,
Expand Down

0 comments on commit a2fe5eb

Please sign in to comment.