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:
authorNathan Letwory <nathan@letworyinteractive.com>2010-10-09 00:40:42 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-10-09 00:40:42 +0400
commitc9d240626d17f95ff88559efc121f6ea7fccdae5 (patch)
treeda11b0df83c91445961feb9589abfb6d85b39219 /intern/guardedalloc/cpp
parent663ce490e0174a90ba3e4ed6f3468301d593958a (diff)
c++ -> C++
Diffstat (limited to 'intern/guardedalloc/cpp')
-rw-r--r--intern/guardedalloc/cpp/mallocn.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/guardedalloc/cpp/mallocn.cpp b/intern/guardedalloc/cpp/mallocn.cpp
index bf51409e84f..b4d19a62bdc 100644
--- a/intern/guardedalloc/cpp/mallocn.cpp
+++ b/intern/guardedalloc/cpp/mallocn.cpp
@@ -26,7 +26,7 @@
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 */