From 6fc6f2504dfdae50c8184185222350052be0775c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Sep 2019 12:56:55 +1000 Subject: Cleanup: use backslash for doxygen commands --- intern/memutil/MEM_RefCounted.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'intern/memutil/MEM_RefCounted.h') 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(); -- cgit v1.2.3