Update to build on Xcode 6.0: fix Boost intrusive_ptr scoping issue

master
callum_linden 2014-10-17 20:24:02 -07:00
parent 0c2082d95e
commit b23afb709d
1 changed files with 3 additions and 3 deletions

View File

@ -151,8 +151,8 @@ private:
* intrusive pointer support for LLThreadSafeRefCount
* this allows you to use boost::intrusive_ptr with any LLThreadSafeRefCount-derived type
*/
namespace boost
{
// namespace boost
// {
inline void intrusive_ptr_add_ref(LLThreadSafeRefCount* p)
{
p->ref();
@ -172,7 +172,7 @@ namespace boost
{
p->unref();
}
};
//};