diff options
author | Richard Linden <none@none> | 2013-09-05 15:33:04 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-09-05 15:33:04 -0700 |
commit | 4032c518e49348ad0180b47d73bb73036bab5f73 (patch) | |
tree | 95e1042fcca0781f81e98c8331bb0a845ab89fe2 | |
parent | 9dc6478544711b1f03c9f7010421f9c8ebbbe008 (diff) |
BUILDFIX: type typo
-rw-r--r-- | indra/llcommon/lltrace.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/lltrace.h b/indra/llcommon/lltrace.h index a465a7f426..d42c8e26fb 100644 --- a/indra/llcommon/lltrace.h +++ b/indra/llcommon/lltrace.h @@ -391,7 +391,7 @@ public: accumulator.mSize.sample(accumulator.mSize.hasValue() ? accumulator.mSize.getLastValue() + (F64)size : (F64)size); accumulator.mAllocatedCount++; - if (alignment == LL_DEFAULT_HEAP_ALIGN) + if (ALIGNMENT == LL_DEFAULT_HEAP_ALIGN) { return ::operator new[](size); } @@ -416,7 +416,7 @@ public: accumulator.mAllocatedCount--; accumulator.mDeallocatedCount++; - if (alignment == LL_DEFAULT_HEAP_ALIGN) + if (ALIGNMENT == LL_DEFAULT_HEAP_ALIGN) { ::operator delete[](ptr); } |