From 25c448ffd8f09e0a93da140a530c459462064996 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20K=C3=A5re=20Alsaker?= Date: Fri, 5 Apr 2019 13:25:24 +0200 Subject: [PATCH] Remove no_force from coherent_trait --- src/librustc/query/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/librustc/query/mod.rs b/src/librustc/query/mod.rs index 8896f9f972881..cdf553d34e926 100644 --- a/src/librustc/query/mod.rs +++ b/src/librustc/query/mod.rs @@ -363,7 +363,6 @@ rustc_queries! { query has_typeck_tables(_: DefId) -> bool {} query coherent_trait(def_id: DefId) -> () { - no_force desc { |tcx| "coherence checking all impls of trait `{}`", tcx.def_path_str(def_id) } } }