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>2019-09-05 05:56:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-09-05 05:56:55 +0300
commit6fc6f2504dfdae50c8184185222350052be0775c (patch)
tree4bd742837fb0627bb7331e788922187a2cd20da5 /intern/memutil
parentadae93281cec11e1b41e3c6c83d77827824eda40 (diff)
Cleanup: use backslash for doxygen commands
Diffstat (limited to 'intern/memutil')
-rw-r--r--intern/memutil/MEM_RefCounted.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/intern/memutil/MEM_RefCounted.h b/intern/memutil/MEM_RefCounted.h
index 28b24d04586..42e595aadf4 100644
--- a/intern/memutil/MEM_RefCounted.h
+++ b/intern/memutil/MEM_RefCounted.h
@@ -34,8 +34,8 @@
* The default destructor of this object has been made protected on purpose.
* This disables the creation of shared objects on the stack.
*
- * @author Maarten Gribnau
- * @date March 31, 2001
+ * \author Maarten Gribnau
+ * \date March 31, 2001
*/
class MEM_RefCounted {
@@ -49,20 +49,20 @@ class MEM_RefCounted {
/**
* Returns the reference count of this object.
- * @return the reference count.
+ * \return the reference count.
*/
inline virtual int getRef() const;
/**
* Increases the reference count of this object.
- * @return the new reference count.
+ * \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.
+ * \return the new reference count.
*/
inline virtual int decRef();