From 2fb82920059257fd7ac8e33bfe53de13e7ed53bd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 16 Sep 2012 04:58:18 +0000 Subject: style cleanup --- intern/memutil/MEM_SmartPtr.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'intern/memutil') diff --git a/intern/memutil/MEM_SmartPtr.h b/intern/memutil/MEM_SmartPtr.h index 722a0a8fd3b..09cf5c95854 100644 --- a/intern/memutil/MEM_SmartPtr.h +++ b/intern/memutil/MEM_SmartPtr.h @@ -86,7 +86,7 @@ * private : * MEM_SmartPtr m_foo; * } - * + * * You may also safely construct vectors of MEM_SmartPtrs and * have the vector own stuff you put into it. * @@ -167,7 +167,7 @@ public : Ref( ) const { return *m_val; - } + } /** * Assignment operator - ownership is transfered from rhs to lhs. @@ -207,7 +207,7 @@ public : Release( ) const { T* temp = m_val; - (const_cast(this))->m_val = NULL; + (const_cast(this))->m_val = NULL; return temp; } -- cgit v1.2.3