diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2022-09-01 15:11:56 +0100 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2022-09-01 15:11:56 +0100 |
commit | 2c692f635da67990f842f20adf3b42d870d42fdf (patch) | |
tree | 3859710e51659fa783a628e4d1030f22ba12e2b4 /indra/llcommon | |
parent | 92b09e3a164e59f5a0c4e436d044590513ddc6bd (diff) |
DRTVWR-559 refcount max change
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llrefcount.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llrefcount.cpp b/indra/llcommon/llrefcount.cpp index 5cbd346411..6852b5536a 100644 --- a/indra/llcommon/llrefcount.cpp +++ b/indra/llcommon/llrefcount.cpp @@ -30,7 +30,7 @@ #include "llerror.h" // maximum reference count before sounding memory leak alarm -const S32 gMaxRefCount = 65536; +const S32 gMaxRefCount = S32_MAX; LLRefCount::LLRefCount(const LLRefCount& other) : mRef(0) |