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:
Diffstat (limited to 'intern/memutil/MEM_RefCounted.h')
-rw-r--r--intern/memutil/MEM_RefCounted.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/intern/memutil/MEM_RefCounted.h b/intern/memutil/MEM_RefCounted.h
index 88eaccf9732..03831fec8f4 100644
--- a/intern/memutil/MEM_RefCounted.h
+++ b/intern/memutil/MEM_RefCounted.h
@@ -58,19 +58,19 @@ public:
{
}
- /**
+ /**
* Returns the reference count of this object.
* @return the reference count.
*/
inline virtual int getRef() const;
- /**
+ /**
* Increases the reference count of this object.
* @return the new reference count.
*/
inline virtual int incRef();
- /**
+ /**
* Decreases the reference count of this object.
* If the reference count reaches zero, the object self-destructs.
* @return the new reference count.
@@ -113,4 +113,3 @@ inline int MEM_RefCounted::decRef()
}
#endif // __MEM_REFCOUNTED_H__
-