summaryrefslogtreecommitdiff
path: root/indra/newview/llface.h
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2012-06-27 14:18:22 -0400
committerOz Linden <oz@lindenlab.com>2012-06-27 14:18:22 -0400
commit2c3e78f1f1f5851482e5e63d37af1325f3a19550 (patch)
tree1871ea15c18377defe5e20a198baf8072e791efc /indra/newview/llface.h
parenteb03da6e993eb33e1fef9bf53268c66d325adf9a (diff)
parentc9f1b1b5113031d5879e8fcdcec263626a7d3122 (diff)
merge changes for DRTVWR-167
Diffstat (limited to 'indra/newview/llface.h')
-rwxr-xr-x[-rw-r--r--]indra/newview/llface.h11
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;