diff options
author | William Todd Stinson <stinson@lindenlab.com> | 2012-09-20 18:48:15 -0700 |
---|---|---|
committer | William Todd Stinson <stinson@lindenlab.com> | 2012-09-20 18:48:15 -0700 |
commit | 29cdf94e95d0a4365bd18860c4759f9a6a13f45a (patch) | |
tree | 39e86ea1f7cb8e05547416d303d63dbbeab85937 /indra/newview/llpolymesh.h | |
parent | 5ec24ecd69986eada6e185e922df5a82bc7dd48d (diff) |
Correcting dynamic allocation issues with classes that have aligned data members.
Diffstat (limited to 'indra/newview/llpolymesh.h')
-rw-r--r-- | indra/newview/llpolymesh.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/newview/llpolymesh.h b/indra/newview/llpolymesh.h index ffb11a3f7e..850171d169 100644 --- a/indra/newview/llpolymesh.h +++ b/indra/newview/llpolymesh.h @@ -406,6 +406,16 @@ public: LLPolySkeletalDistortion(LLVOAvatar *avatarp); ~LLPolySkeletalDistortion(); + void* operator new(size_t size) + { + return ll_aligned_malloc_16(size); + } + + void operator delete(void* ptr) + { + ll_aligned_free_16(ptr); + } + // Special: These functions are overridden by child classes LLPolySkeletalDistortionInfo* getInfo() const { return (LLPolySkeletalDistortionInfo*)mInfo; } // This sets mInfo and calls initialization functions |