diff options
| author | bors <bors@rust-lang.org> | 2014-05-30 21:21:39 -0700 | 
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-05-30 21:21:39 -0700 | 
| commit | 60a43f9bc5d24b47aae9681fc7ef47d517329e59 (patch) | |
| tree | c0e46f35c6d6482996e6b10eaf635201b51e82d4 /src/libworkcache/lib.rs | |
| parent | cc4513202d6f9c6896054ebaa1d99230b06e9f10 (diff) | |
| parent | bb96ee6123082908dba86cb22344f0c23915bf06 (diff) | |
| download | rust-60a43f9bc5d24b47aae9681fc7ef47d517329e59.tar.gz rust-60a43f9bc5d24b47aae9681fc7ef47d517329e59.zip  | |
auto merge of #14534 : alexcrichton/rust/snapshots, r=sfackler
This is part 2 of the saga of renaming the Partial/Total equality and comparison traits.
Diffstat (limited to 'src/libworkcache/lib.rs')
| -rw-r--r-- | src/libworkcache/lib.rs | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libworkcache/lib.rs b/src/libworkcache/lib.rs index 064979fa277..7c3fc18dd04 100644 --- a/src/libworkcache/lib.rs +++ b/src/libworkcache/lib.rs @@ -99,7 +99,7 @@ use std::str; use std::io; use std::io::{File, MemWriter}; -#[deriving(Clone, Eq, Encodable, Decodable, Ord, TotalOrd, TotalEq)] +#[deriving(Clone, PartialEq, Encodable, Decodable, PartialOrd, TotalOrd, TotalEq)] struct WorkKey { kind: String, name: String @@ -116,10 +116,10 @@ impl WorkKey { // FIXME #8883: The key should be a WorkKey and not a String. // This is working around some JSON weirdness. -#[deriving(Clone, Eq, Encodable, Decodable)] +#[deriving(Clone, PartialEq, Encodable, Decodable)] struct WorkMap(TreeMap<String, KindMap>); -#[deriving(Clone, Eq, Encodable, Decodable)] +#[deriving(Clone, PartialEq, Encodable, Decodable)] struct KindMap(TreeMap<String, String>); impl WorkMap {  | 
