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>2020-09-12 09:33:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-09-12 09:33:34 +0300
commit8c1726918374e1d2d2123e17bae8db5aadde3433 (patch)
treebf6890c679d5eec336af5bc2424c8580934c0613 /intern/memutil
parent4c24e8e992c78d812cdfcb90e3aa648714597ae1 (diff)
Cleanup: use C style doxygen comments
Diffstat (limited to 'intern/memutil')
-rw-r--r--intern/memutil/MEM_RefCounted.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/memutil/MEM_RefCounted.h b/intern/memutil/MEM_RefCounted.h
index 42e595aadf4..06828fc32c3 100644
--- a/intern/memutil/MEM_RefCounted.h
+++ b/intern/memutil/MEM_RefCounted.h
@@ -76,7 +76,7 @@ class MEM_RefCounted {
}
protected:
- /// The reference count.
+ /** The reference count. */
int m_refCount;
};