about summary refs log tree commit diff
path: root/src/librustc_query_system
diff options
context:
space:
mode:
authorCamille GILLOT <gillot.camille@gmail.com>2020-03-18 10:32:58 +0100
committerCamille GILLOT <gillot.camille@gmail.com>2020-03-23 23:14:26 +0100
commitdb7bd5f828faa85880fc3cbac0c7b679e2225321 (patch)
treedccab4288b8a800d51e9b3d96c7a7967e626c28c /src/librustc_query_system
parent6624dc4045505e942ce219dcc374061cef50e3f1 (diff)
downloadrust-db7bd5f828faa85880fc3cbac0c7b679e2225321.tar.gz
rust-db7bd5f828faa85880fc3cbac0c7b679e2225321.zip
Fallout in other crates.
Diffstat (limited to 'src/librustc_query_system')
-rw-r--r--src/librustc_query_system/dep_graph/dep_node.rs15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/librustc_query_system/dep_graph/dep_node.rs b/src/librustc_query_system/dep_graph/dep_node.rs
index 9dcba30300f..c6fff2f0164 100644
--- a/src/librustc_query_system/dep_graph/dep_node.rs
+++ b/src/librustc_query_system/dep_graph/dep_node.rs
@@ -126,19 +126,8 @@ where
 /// some independent path or string that persists between runs without
 /// the need to be mapped or unmapped. (This ensures we can serialize
 /// them even in the absence of a tcx.)
-#[derive(
-    Clone,
-    Copy,
-    Debug,
-    PartialEq,
-    Eq,
-    PartialOrd,
-    Ord,
-    Hash,
-    RustcEncodable,
-    RustcDecodable,
-    HashStable_Generic
-)]
+#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable)]
+#[derive(HashStable_Generic)]
 pub struct WorkProductId {
     hash: Fingerprint,
 }