Skip to content

Commit

Permalink
codegen: Replace ControlFlow with Propagation
Browse files Browse the repository at this point in the history
  • Loading branch information
bilelmoussaoui committed Aug 1, 2023
1 parent c88b692 commit ef087c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codegen/trampoline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ef087c0

Please sign in to comment.