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:
authorCampbell Barton <ideasman42@gmail.com>2013-03-08 10:32:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-08 10:32:00 +0400
commit6fd187e4df1133b273ee2e5c1bbb3b8a9f31e73e (patch)
treeff3e9899dc31ffa5190c3ad5990b72a6edb14b54 /intern/memutil/MEM_Allocator.h
parent1d5b7bc1f795096d1eee69378b9b924560b9b20d (diff)
code cleanup: 0 --> NULL
Diffstat (limited to 'intern/memutil/MEM_Allocator.h')
-rw-r--r--intern/memutil/MEM_Allocator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/memutil/MEM_Allocator.h b/intern/memutil/MEM_Allocator.h
index 0020094ebbb..b4c0559b511 100644
--- a/intern/memutil/MEM_Allocator.h
+++ b/intern/memutil/MEM_Allocator.h
@@ -63,7 +63,7 @@ struct MEM_Allocator
// NB: __n is permitted to be 0. The C++ standard says nothing
// about what the return value is when __n == 0.
_Tp* allocate(size_type __n, const void* = 0) {
- _Tp* __ret = 0;
+ _Tp* __ret = NULL;
if (__n)
__ret = static_cast<_Tp*>(
MEM_mallocN(__n * sizeof(_Tp),