diff options
author | marha <marha@users.sourceforge.net> | 2012-06-11 08:22:24 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-06-11 08:22:24 +0200 |
commit | 080d1527a5358dd66ac927acbe0ec61cba7aa7e1 (patch) | |
tree | 6d54a6409a4627162bddaad63186327e1ecdbad1 /mesalib/src/glsl/ir.h | |
parent | 990bc3f015a4f8fce2eb918375defcd44980a845 (diff) | |
download | vcxsrv-080d1527a5358dd66ac927acbe0ec61cba7aa7e1.tar.gz vcxsrv-080d1527a5358dd66ac927acbe0ec61cba7aa7e1.tar.bz2 vcxsrv-080d1527a5358dd66ac927acbe0ec61cba7aa7e1.zip |
fontconfig glproto mesa pixman git update 11 Jun 2012
Diffstat (limited to 'mesalib/src/glsl/ir.h')
-rw-r--r-- | mesalib/src/glsl/ir.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mesalib/src/glsl/ir.h b/mesalib/src/glsl/ir.h index 2c4723627..a3f9f0588 100644 --- a/mesalib/src/glsl/ir.h +++ b/mesalib/src/glsl/ir.h @@ -89,6 +89,16 @@ class ir_instruction : public exec_node { public: enum ir_node_type ir_type; + /** + * GCC 4.7+ and clang warn when deleting an ir_instruction unless + * there's a virtual destructor present. Because we almost + * universally use ralloc for our memory management of + * ir_instructions, the destructor doesn't need to do any work. + */ + virtual ~ir_instruction() + { + } + /** ir_print_visitor helper for debugging. */ void print(void) const; |