Don't use a generator for BoxedResolver

The generator is non-trivial and requires unsafe code anyway. Using
regular unsafe code without a generator is much easier to follow.
This commit is contained in:
bjorn3
2021-06-01 10:47:39 +02:00
parent 36bdfdc411
commit 86c2d1a2a7
2 changed files with 47 additions and 118 deletions

View File

@@ -2,8 +2,6 @@
#![feature(box_patterns)]
#![feature(internal_output_capture)]
#![feature(nll)]
#![feature(generator_trait)]
#![feature(generators)]
#![feature(once_cell)]
#![recursion_limit = "256"]