diff options
author | Richard Linden <none@none> | 2013-07-30 19:50:37 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-07-30 19:50:37 -0700 |
commit | e8aa0c493b66dd414ef75ddb3fb1c77875b0c42d (patch) | |
tree | 39a2af9c7d3b356c3f10f3244da0ab0f12aa1081 /indra/llcommon/llrefcount.h | |
parent | 5762c1d0d727f0050aefe7126ab2d5280bebfb9b (diff) |
BUILDFIX: some gcc build fixes
Diffstat (limited to 'indra/llcommon/llrefcount.h')
-rwxr-xr-x | indra/llcommon/llrefcount.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llrefcount.h b/indra/llcommon/llrefcount.h index 3e472d0766..3d59e48f74 100755 --- a/indra/llcommon/llrefcount.h +++ b/indra/llcommon/llrefcount.h @@ -62,7 +62,7 @@ public: inline S32 unref() const { llassert(mRef >= 1); - if (0 == --mRef) + if (0 == --mRef) { delete this; return 0; |