diff options
Diffstat (limited to 'indra/newview/llface.h')
-rwxr-xr-x[-rw-r--r--] | indra/newview/llface.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/newview/llface.h b/indra/newview/llface.h index 76ea5c853a..5dca27487f 100644..100755 --- a/indra/newview/llface.h +++ b/indra/newview/llface.h @@ -59,6 +59,17 @@ class LLFace { public: + void* operator new(size_t size) + { + return ll_aligned_malloc_16(size); + } + + void operator delete(void* ptr) + { + ll_aligned_free_16(ptr); + } + + LLFace(const LLFace& rhs) { *this = rhs; |