diff options
-rw-r--r-- | indra/llmath/tests/alignment_test.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/llmath/tests/alignment_test.cpp b/indra/llmath/tests/alignment_test.cpp index ced039b2c6..5ee3c45502 100644 --- a/indra/llmath/tests/alignment_test.cpp +++ b/indra/llmath/tests/alignment_test.cpp @@ -60,11 +60,11 @@ public: ll_aligned_free_16(p); } - void* operator new[](size_t count)
- { // try to allocate count bytes for an array
- return ll_aligned_malloc_16(count);
- }
-
+ void* operator new[](size_t count) + { // try to allocate count bytes for an array + return ll_aligned_malloc_16(count); + } + void operator delete[](void *p) { ll_aligned_free_16(p); |