mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-31 20:40:09 +01:00
glsl: Switch ast_type_qualifier to the non-zeroing allocator.
All member variables of ast_type_qualifier are already being initialized from its implicitly defined constructor, it's not necessary to use rzalloc to allocate its memory. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
8bd1c69f3b
commit
58d772cb41
1 changed files with 1 additions and 1 deletions
|
|
@ -346,7 +346,7 @@ enum {
|
|||
};
|
||||
|
||||
struct ast_type_qualifier {
|
||||
DECLARE_RZALLOC_CXX_OPERATORS(ast_type_qualifier);
|
||||
DECLARE_RALLOC_CXX_OPERATORS(ast_type_qualifier);
|
||||
|
||||
union {
|
||||
struct {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue