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 'source/blender/freestyle/intern/system/BaseObject.h')
-rw-r--r--source/blender/freestyle/intern/system/BaseObject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/freestyle/intern/system/BaseObject.h b/source/blender/freestyle/intern/system/BaseObject.h
index 76d30aa74e2..8a19100a5c6 100644
--- a/source/blender/freestyle/intern/system/BaseObject.h
+++ b/source/blender/freestyle/intern/system/BaseObject.h
@@ -39,7 +39,7 @@ class BaseObject {
{
}
- /*! At least makes a release on this.
+ /** At least makes a release on this.
* The BaseObject::destroy method must be explicitly called at the end of any overloaded destroy
*/
virtual int destroy()
@@ -47,13 +47,13 @@ class BaseObject {
return release();
}
- /*! Increments the reference counter */
+ /** Increments the reference counter */
inline int addRef()
{
return ++_ref_counter;
}
- /*! Decrements the reference counter */
+ /** Decrements the reference counter */
inline int release()
{
if (_ref_counter) {