summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-09-05 15:33:04 -0700
committerRichard Linden <none@none>2013-09-05 15:33:04 -0700
commit4032c518e49348ad0180b47d73bb73036bab5f73 (patch)
tree95e1042fcca0781f81e98c8331bb0a845ab89fe2 /indra/llcommon
parent9dc6478544711b1f03c9f7010421f9c8ebbbe008 (diff)
BUILDFIX: type typo
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/lltrace.h4
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);
}