diff options
author | prep <none@none> | 2012-01-24 16:09:26 -0500 |
---|---|---|
committer | prep <none@none> | 2012-01-24 16:09:26 -0500 |
commit | d4c0c127b62499b72745de7f9df135ec0286cc13 (patch) | |
tree | 8bacac91a776d382cc904344ff8f853ddeaf2232 /indra/llcommon | |
parent | 3b4d841ee254186d881490cfadbdfbac6dcdf6ad (diff) |
WIP: path-118
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llpointer.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/llcommon/llpointer.h b/indra/llcommon/llpointer.h index affa040602..88c09c8dca 100644 --- a/indra/llcommon/llpointer.h +++ b/indra/llcommon/llpointer.h @@ -140,6 +140,10 @@ public: } protected: +#ifdef LL_LIBRARY_INCLUDE + void ref(); + void unref(); +#else void ref() { if (mPointer) @@ -162,7 +166,7 @@ protected: } } } - +#endif protected: Type* mPointer; }; |