mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
ast_node: Remove empty destructor.
This wasn't serving any purpose. So delete it.
This commit is contained in:
parent
c42e64099b
commit
4b2d32b5b5
2 changed files with 0 additions and 8 deletions
1
ast.h
1
ast.h
|
|
@ -36,7 +36,6 @@ struct YYLTYPE;
|
|||
|
||||
class ast_node {
|
||||
public:
|
||||
virtual ~ast_node();
|
||||
virtual void print(void) const;
|
||||
virtual ir_rvalue *hir(exec_list *instructions,
|
||||
struct _mesa_glsl_parse_state *state);
|
||||
|
|
|
|||
|
|
@ -155,13 +155,6 @@ _mesa_glsl_process_extension(const char *name, YYLTYPE *name_locp,
|
|||
return true;
|
||||
}
|
||||
|
||||
|
||||
ast_node::~ast_node()
|
||||
{
|
||||
/* empty */
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
_mesa_ast_type_qualifier_print(const struct ast_type_qualifier *q)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue