Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-09-16 08:58:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-16 08:58:18 +0400
commit2fb82920059257fd7ac8e33bfe53de13e7ed53bd (patch)
treecb8de3a839cb9878d0869d4e436a235346109c16 /intern/memutil
parentc2a1dcf6218cbd56126a5deb1aeaf212d67e54cb (diff)
style cleanup
Diffstat (limited to 'intern/memutil')
-rw-r--r--intern/memutil/MEM_SmartPtr.h6
1 files changed, 3 insertions, 3 deletions
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<foo> 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<MEM_SmartPtr *>(this))->m_val = NULL;
+ (const_cast<MEM_SmartPtr *>(this))->m_val = NULL;
return temp;
}