about summary refs log tree commit diff
path: root/compiler/rustc_next_trait_solver
diff options
context:
space:
mode:
authorlcnr <rust@lcnr.de>2025-09-26 14:51:13 +0200
committerlcnr <rust@lcnr.de>2025-09-26 15:29:01 +0200
commit4e44d58bbc199ff7c17a98b283621a6df327d60f (patch)
tree72d05e25fd0aaeae93e650f343e1a96853ec5388 /compiler/rustc_next_trait_solver
parent4a0c7cc730a5434574c41a6073d9efb92141af1a (diff)
downloadrust-4e44d58bbc199ff7c17a98b283621a6df327d60f.tar.gz
rust-4e44d58bbc199ff7c17a98b283621a6df327d60f.zip
rename `search_graph::Delegate` fns
Diffstat (limited to 'compiler/rustc_next_trait_solver')
-rw-r--r--compiler/rustc_next_trait_solver/src/solve/search_graph.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_next_trait_solver/src/solve/search_graph.rs b/compiler/rustc_next_trait_solver/src/solve/search_graph.rs
index 4ae2af59a70..109c8476ccb 100644
--- a/compiler/rustc_next_trait_solver/src/solve/search_graph.rs
+++ b/compiler/rustc_next_trait_solver/src/solve/search_graph.rs
@@ -91,11 +91,11 @@ where
         }
     }
 
-    fn on_stack_overflow(cx: I, input: CanonicalInput<I>) -> QueryResult<I> {
+    fn stack_overflow_result(cx: I, input: CanonicalInput<I>) -> QueryResult<I> {
         response_no_constraints(cx, input, Certainty::overflow(true))
     }
 
-    fn on_fixpoint_overflow(cx: I, input: CanonicalInput<I>) -> QueryResult<I> {
+    fn fixpoint_overflow_result(cx: I, input: CanonicalInput<I>) -> QueryResult<I> {
         response_no_constraints(cx, input, Certainty::overflow(false))
     }