diff --git a/ci/generate_checked_functions.py b/ci/generate_checked_functions.py index bc6383285..3fbdb6fb0 100644 --- a/ci/generate_checked_functions.py +++ b/ci/generate_checked_functions.py @@ -18,7 +18,7 @@ def generate_checked_function(func): return_type = " ".join(func.type.type.type.names) # Start building the new function - new_func = [f"Result {new_func_name}("] + new_func = [f"static inline Result {new_func_name}("] param_list = [] for param in params: if isinstance(param, c_ast.EllipsisParam):