From e4ca67f7aaa9ea3a68812fba56889479c122fabc Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 19 Sep 2012 20:12:17 +0200 Subject: [PATCH] d3dcompiler_43: Make add_type_to_scope() static. --- dlls/d3dcompiler_43/hlsl.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3dcompiler_43/hlsl.y b/dlls/d3dcompiler_43/hlsl.y index 5670586efb8..eea49be7677 100644 --- a/dlls/d3dcompiler_43/hlsl.y +++ b/dlls/d3dcompiler_43/hlsl.y @@ -186,7 +186,7 @@ static BOOL check_type_modifiers(DWORD modifiers, struct source_location *loc) return TRUE; } -BOOL add_type_to_scope(struct hlsl_scope *scope, struct hlsl_type *def) +static BOOL add_type_to_scope(struct hlsl_scope *scope, struct hlsl_type *def) { if (get_type(scope, def->name, FALSE)) return FALSE;