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/cpp/mallocn.cpp')
-rw-r--r--intern/guardedalloc/cpp/mallocn.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/intern/guardedalloc/cpp/mallocn.cpp b/intern/guardedalloc/cpp/mallocn.cpp
index bf51409e84f..0615d19d77f 100644
--- a/intern/guardedalloc/cpp/mallocn.cpp
+++ b/intern/guardedalloc/cpp/mallocn.cpp
@@ -1,4 +1,4 @@
-/**
+/*
* $Id$
* ***** BEGIN GPL LICENSE BLOCK *****
*
@@ -21,12 +21,17 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file guardedalloc/cpp/mallocn.cpp
+ * \ingroup MEM
+ */
+
+
#include <new>
#include "../MEM_guardedalloc.h"
void* operator new (size_t size)
{
- return MEM_mallocN(size, "c++/anonymous");
+ return MEM_mallocN(size, "C++/anonymous");
}
/* not default but can be used when needing to set a string */