diff options
author | Oz Linden <oz@lindenlab.com> | 2012-09-27 13:02:07 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2012-09-27 13:02:07 -0400 |
commit | d5dbd2e9c1b82e475bd5650a39b3c40fd4c5b51d (patch) | |
tree | 44de2d458e4751d16ab372ff6f4a467fbb3c2ae6 /indra | |
parent | c6a5b62152ec81b3b01f5c5cf2142178bea30ad8 (diff) |
fix dos line endings
Diffstat (limited to 'indra')
-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); |