about summary refs log tree commit diff
path: root/compiler/rustc_infer/src
diff options
context:
space:
mode:
authorlcnr <rust@lcnr.de>2021-08-02 08:47:15 +0200
committerlcnr <rust@lcnr.de>2021-08-26 11:00:30 +0200
commitbc0156baceed60a4dbfd063554e66bc69b3b0bd4 (patch)
tree0c075dbd7fe5e608b61f71997902d5c919d36704 /compiler/rustc_infer/src
parent283e0e670b7b6f925d5973f2b2b373304b17b114 (diff)
downloadrust-bc0156baceed60a4dbfd063554e66bc69b3b0bd4.tar.gz
rust-bc0156baceed60a4dbfd063554e66bc69b3b0bd4.zip
shrink `ty::PredicateKind` again
Diffstat (limited to 'compiler/rustc_infer/src')
-rw-r--r--compiler/rustc_infer/src/infer/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_infer/src/infer/mod.rs b/compiler/rustc_infer/src/infer/mod.rs
index 7f890829e68..bc98a3aa3f9 100644
--- a/compiler/rustc_infer/src/infer/mod.rs
+++ b/compiler/rustc_infer/src/infer/mod.rs
@@ -675,8 +675,8 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
     /// canonicalizing the consts.
     pub fn try_unify_abstract_consts(
         &self,
-        a: ty::Unevaluated<'tcx>,
-        b: ty::Unevaluated<'tcx>,
+        a: ty::Unevaluated<'tcx, ()>,
+        b: ty::Unevaluated<'tcx, ()>,
     ) -> bool {
         let canonical = self.canonicalize_query((a, b), &mut OriginalQueryValues::default());
         debug!("canonical consts: {:?}", &canonical.value);