Skip to content

Commit d3d3fc4

Browse files
author
Markus Westerlind
committed
Always use the simple obligation forest
1 parent 22c5b94 commit d3d3fc4

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_data_structures/src/obligation_forest

1 file changed

+1
-1
lines changed

compiler/rustc_data_structures/src/obligation_forest/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ impl<O: ForestObligation> ObligationForest<O> {
594594
{
595595
if self.watcher_offset.is_none() {
596596
assert!(!self.done);
597-
if self.nodes.len() > 100 {
597+
if false && self.nodes.len() > 100 {
598598
self.watcher_offset = Some(processor.register_variable_watcher());
599599
}
600600
if let Some(outcome) = self.process_obligations_simple(processor, do_completed) {

0 commit comments

Comments
 (0)