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.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/intern/memutil/MEM_RefCounted.h b/intern/memutil/MEM_RefCounted.h
index a78131c4659..0dccf790caa 100644
--- a/intern/memutil/MEM_RefCounted.h
+++ b/intern/memutil/MEM_RefCounted.h
@@ -17,12 +17,9 @@
* All rights reserved.
*/
-/** \file memutil/MEM_RefCounted.h
- * \ingroup memutil
- */
-
-/**
- * @file MEM_RefCounted.h
+/** \file
+ * \ingroup memutil
+ *
* Declaration of MEM_RefCounted class.
*/
@@ -50,19 +47,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.
@@ -105,4 +102,3 @@ inline int MEM_RefCounted::decRef()
}
#endif // __MEM_REFCOUNTED_H__
-