From a09926f86d0bd0ed500e1e30e00264acffd522de Mon Sep 17 00:00:00 2001 From: Bilal Elmoussaoui Date: Tue, 25 Jul 2023 10:10:36 +0200 Subject: [PATCH] codegen: Replace ControlFlow with Propagation --- src/codegen/trampoline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/codegen/trampoline.rs b/src/codegen/trampoline.rs index d93e2314e..b339ef074 100644 --- a/src/codegen/trampoline.rs +++ b/src/codegen/trampoline.rs @@ -148,7 +148,7 @@ fn func_returns(env: &Env, analysis: &Trampoline) -> String { if analysis.ret.typ == Default::default() { String::new() } else if analysis.inhibit { - format!(" -> {inhibit}", inhibit = use_glib_type(env, "ControlFlow")) + format!(" -> {inhibit}", inhibit = use_glib_type(env, "Propagation")) } else if let Some(return_type) = analysis .ret