mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 15:38:09 +02:00
i965: Fix struct vs class warnings in brw_fs_vector_splitting.cpp.
Makes clang happier. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
0d8deb5bc9
commit
4abba27ae0
1 changed files with 2 additions and 2 deletions
|
|
@ -209,12 +209,12 @@ public:
|
|||
virtual ir_visitor_status visit_leave(ir_assignment *);
|
||||
|
||||
void handle_rvalue(ir_rvalue **rvalue);
|
||||
struct variable_entry *get_splitting_entry(ir_variable *var);
|
||||
variable_entry *get_splitting_entry(ir_variable *var);
|
||||
|
||||
exec_list *variable_list;
|
||||
};
|
||||
|
||||
struct variable_entry *
|
||||
variable_entry *
|
||||
ir_vector_splitting_visitor::get_splitting_entry(ir_variable *var)
|
||||
{
|
||||
assert(var);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue