Skip to content

Commit

Permalink
Update to rust HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
erickt committed Apr 5, 2015
1 parent 87503d1 commit d8506e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_de.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ impl<'a> TokenDeserializer {
}
}

#[derive(Copy, PartialEq, Debug)]
#[derive(Copy, Clone, PartialEq, Debug)]
enum Error {
SyntaxError,
EndOfStreamError,
Expand Down Expand Up @@ -324,7 +324,7 @@ impl<'a> de::VariantVisitor for TokenDeserializerVariantVisitor<'a> {

//////////////////////////////////////////////////////////////////////////

#[derive(Copy, PartialEq, Debug, Deserialize)]
#[derive(Copy, Clone, PartialEq, Debug, Deserialize)]
struct NamedUnit;

#[derive(PartialEq, Debug, Deserialize)]
Expand Down

0 comments on commit d8506e9

Please sign in to comment.