diff options
Diffstat (limited to 'mesalib/src/glsl/glsl_symbol_table.cpp')
-rwxr-xr-x | mesalib/src/glsl/glsl_symbol_table.cpp | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/mesalib/src/glsl/glsl_symbol_table.cpp b/mesalib/src/glsl/glsl_symbol_table.cpp index 99057bced..0eabc23d8 100755 --- a/mesalib/src/glsl/glsl_symbol_table.cpp +++ b/mesalib/src/glsl/glsl_symbol_table.cpp @@ -26,24 +26,11 @@ class symbol_table_entry { public: - /* Callers of this ralloc-based new need not call delete. It's - * easier to just ralloc_free 'ctx' (or any of its ancestors). */ - static void* operator new(size_t size, void *ctx) - { - void *entry = ralloc_size(ctx, size); - assert(entry != NULL); - return entry; - } - - /* If the user *does* call delete, that's OK, we will just ralloc_free. */ + DECLARE_RALLOC_CXX_OPERATORS(symbol_table_entry); static void operator delete(void *entry, void *ctx) { ralloc_free(entry); } - static void operator delete(void *entry) - { - ralloc_free(entry); - } bool add_interface(const glsl_type *i, enum ir_variable_mode mode) { |