Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
25c46526
Commit
25c46526
authored
Oct 15, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 15, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler_43: Make free_function{_decl}() static.
parent
755e01bc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
utils.c
dlls/d3dcompiler_43/utils.c
+2
-2
No files found.
dlls/d3dcompiler_43/utils.c
View file @
25c46526
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment