diff options
| author | Rider Linden <none@none> | 2015-03-16 17:14:34 -0700 |
|---|---|---|
| committer | Rider Linden <none@none> | 2015-03-16 17:14:34 -0700 |
| commit | 6f4d36634e980bb989b9a8b762c3c622804c43dd (patch) | |
| tree | efa71ac14bdef46b9796688d4a445d60fdd5b1c3 /indra/llcorehttp/_refcounted.h | |
| parent | d4a2e9fd9a0e7001a6c824ddd6cf37039a632b9d (diff) | |
Removal of RPCXML dep on LLCurl switching to LLCore::Html
Diffstat (limited to 'indra/llcorehttp/_refcounted.h')
| -rwxr-xr-x | indra/llcorehttp/_refcounted.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/llcorehttp/_refcounted.h b/indra/llcorehttp/_refcounted.h index 402e725152..cd16e2e2b4 100755 --- a/indra/llcorehttp/_refcounted.h +++ b/indra/llcorehttp/_refcounted.h @@ -120,7 +120,18 @@ inline void RefCounted::destroySelf() delete this; } +inline void intrusive_ptr_add_ref(RefCounted* p) +{ + p->addRef(); +} + +inline void intrusive_ptr_release(RefCounted* p) +{ + p->release(); +} + } // end namespace LLCoreInt + #endif // LLCOREINT__REFCOUNTED_H_ |
