diff options
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;  };  | 
