mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 22:20:14 +01:00
glsl: Add copy-constructor for ast_struct_specifier.
Reviewed-by: Chad Versace <chad.versace@linux.intel.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
43757135b2
commit
a760c73853
1 changed files with 12 additions and 0 deletions
|
|
@ -453,6 +453,18 @@ class ast_declarator_list;
|
|||
|
||||
class ast_struct_specifier : public ast_node {
|
||||
public:
|
||||
/**
|
||||
* \brief Make a shallow copy of an ast_struct_specifier.
|
||||
*
|
||||
* Use only if the objects are allocated from the same context and will not
|
||||
* be modified. Zeros the inherited ast_node's fields.
|
||||
*/
|
||||
ast_struct_specifier(const ast_struct_specifier& that):
|
||||
ast_node(), name(that.name), declarations(that.declarations)
|
||||
{
|
||||
/* empty */
|
||||
}
|
||||
|
||||
ast_struct_specifier(const char *identifier,
|
||||
ast_declarator_list *declarator_list);
|
||||
virtual void print(void) const;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue