Commit 25c46526 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

d3dcompiler_43: Make free_function{_decl}() static.

parent 755e01bc
......@@ -2468,7 +2468,7 @@ void free_instr(struct hlsl_ir_node *node)
}
}
void free_function_decl(struct hlsl_ir_function_decl *func)
static void free_function_decl(struct hlsl_ir_function_decl *func)
{
d3dcompiler_free((void *)func->semantic);
d3dcompiler_free(func->parameters);
......@@ -2481,7 +2481,7 @@ static void free_function_decl_rb(struct wine_rb_entry *entry, void *context)
free_function_decl(WINE_RB_ENTRY_VALUE(entry, struct hlsl_ir_function_decl, entry));
}
void free_function(struct hlsl_ir_function *func)
static void free_function(struct hlsl_ir_function *func)
{
wine_rb_destroy(&func->overloads, free_function_decl_rb, NULL);
d3dcompiler_free((void *)func->name);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment