Skip to content

Commit 2ea9c31

Browse files
Move InferCtxtSelectExt out of eval_ctxt module
1 parent 7f798cb commit 2ea9c31

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

compiler/rustc_trait_selection/src/solve/eval_ctxt/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,9 @@ use super::inspect::ProofTreeBuilder;
3030
use super::{search_graph, GoalEvaluationKind, FIXPOINT_STEP_LIMIT};
3131
use super::{search_graph::SearchGraph, Goal};
3232
use super::{GoalSource, SolverMode};
33-
pub use select::InferCtxtSelectExt;
3433

3534
pub(super) mod canonical;
3635
mod probe;
37-
mod select;
3836

3937
pub struct EvalCtxt<'a, Infcx, I = <Infcx as InferCtxtLike>::Interner>
4038
where

compiler/rustc_trait_selection/src/solve/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,14 @@ mod normalize;
3737
mod normalizes_to;
3838
mod project_goals;
3939
mod search_graph;
40+
mod select;
4041
mod trait_goals;
4142

42-
pub use eval_ctxt::{EvalCtxt, GenerateProofTree, InferCtxtEvalExt, InferCtxtSelectExt};
43+
pub use eval_ctxt::{EvalCtxt, GenerateProofTree, InferCtxtEvalExt};
4344
pub use fulfill::{FulfillmentCtxt, NextSolverError};
4445
pub(crate) use normalize::deeply_normalize_for_diagnostics;
4546
pub use normalize::{deeply_normalize, deeply_normalize_with_skipped_universes};
47+
pub use select::InferCtxtSelectExt;
4648

4749
/// How many fixpoint iterations we should attempt inside of the solver before bailing
4850
/// with overflow.

0 commit comments

Comments
 (0)