about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-04-06 04:14:13 +0000
committerbors <bors@rust-lang.org>2019-04-06 04:14:13 +0000
commitb025802a2454a2335074feaf18f7afb516f0420c (patch)
tree3b56e38dac0c19630c25317a231dc697fd0a5ae4
parent05b4554e77ef32a97060b1bfffd1f621bf15bb88 (diff)
parent25c448ffd8f09e0a93da140a530c459462064996 (diff)
downloadrust-b025802a2454a2335074feaf18f7afb516f0420c.tar.gz
rust-b025802a2454a2335074feaf18f7afb516f0420c.zip
Auto merge of #59723 - Zoxc:rem-noforce, r=michaelwoerister
Remove no_force from coherent_trait

r? @michaelwoerister
-rw-r--r--src/librustc/query/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/librustc/query/mod.rs b/src/librustc/query/mod.rs
index 8896f9f9728..cdf553d34e9 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) }
         }
     }