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/guardedalloc/intern')
-rw-r--r--intern/guardedalloc/intern/leak_detector.cc6
-rw-r--r--intern/guardedalloc/intern/mallocn.c2
-rw-r--r--intern/guardedalloc/intern/mallocn_guarded_impl.c2
-rw-r--r--intern/guardedalloc/intern/mallocn_inline.h2
-rw-r--r--intern/guardedalloc/intern/mallocn_intern.h2
-rw-r--r--intern/guardedalloc/intern/mallocn_lockfree_impl.c2
6 files changed, 8 insertions, 8 deletions
diff --git a/intern/guardedalloc/intern/leak_detector.cc b/intern/guardedalloc/intern/leak_detector.cc
index 03d54f2e776..072b68fcc9f 100644
--- a/intern/guardedalloc/intern/leak_detector.cc
+++ b/intern/guardedalloc/intern/leak_detector.cc
@@ -15,7 +15,7 @@
*/
/** \file
- * \ingroup MEM
+ * \ingroup intern_mem
*/
#include <cstdio> /* Needed for `printf` on WIN32/APPLE. */
@@ -65,7 +65,7 @@ class MemLeakPrinter {
};
} // namespace
-void MEM_init_memleak_detection(void)
+void MEM_init_memleak_detection()
{
/**
* This variable is constructed when this function is first called. This should happen as soon as
@@ -84,7 +84,7 @@ void MEM_use_memleak_detection(bool enabled)
ignore_memleak = !enabled;
}
-void MEM_enable_fail_on_memleak(void)
+void MEM_enable_fail_on_memleak()
{
fail_on_memleak = true;
}
diff --git a/intern/guardedalloc/intern/mallocn.c b/intern/guardedalloc/intern/mallocn.c
index 261a23a1196..c7b12ed3457 100644
--- a/intern/guardedalloc/intern/mallocn.c
+++ b/intern/guardedalloc/intern/mallocn.c
@@ -15,7 +15,7 @@
*/
/** \file
- * \ingroup MEM
+ * \ingroup intern_mem
*
* Guarded memory allocation, and boundary-write detection.
*/
diff --git a/intern/guardedalloc/intern/mallocn_guarded_impl.c b/intern/guardedalloc/intern/mallocn_guarded_impl.c
index bba72c907eb..2720a9762bb 100644
--- a/intern/guardedalloc/intern/mallocn_guarded_impl.c
+++ b/intern/guardedalloc/intern/mallocn_guarded_impl.c
@@ -18,7 +18,7 @@
*/
/** \file
- * \ingroup MEM
+ * \ingroup intern_mem
*
* Guarded memory allocation, and boundary-write detection.
*/
diff --git a/intern/guardedalloc/intern/mallocn_inline.h b/intern/guardedalloc/intern/mallocn_inline.h
index 4e73eb9bad6..65bd40de492 100644
--- a/intern/guardedalloc/intern/mallocn_inline.h
+++ b/intern/guardedalloc/intern/mallocn_inline.h
@@ -27,7 +27,7 @@
*/
/** \file
- * \ingroup MEM
+ * \ingroup intern_mem
*/
#ifndef __MALLOCN_INLINE_H__
diff --git a/intern/guardedalloc/intern/mallocn_intern.h b/intern/guardedalloc/intern/mallocn_intern.h
index e4bd3d533a3..b57e11d9a8f 100644
--- a/intern/guardedalloc/intern/mallocn_intern.h
+++ b/intern/guardedalloc/intern/mallocn_intern.h
@@ -18,7 +18,7 @@
*/
/** \file
- * \ingroup MEM
+ * \ingroup intern_mem
*/
#ifndef __MALLOCN_INTERN_H__
diff --git a/intern/guardedalloc/intern/mallocn_lockfree_impl.c b/intern/guardedalloc/intern/mallocn_lockfree_impl.c
index a843086a1f1..5d522f4da88 100644
--- a/intern/guardedalloc/intern/mallocn_lockfree_impl.c
+++ b/intern/guardedalloc/intern/mallocn_lockfree_impl.c
@@ -15,7 +15,7 @@
*/
/** \file
- * \ingroup MEM
+ * \ingroup intern_mem
*
* Memory allocation which keeps track on allocated memory counters
*/