From 2b7ca2304a9b17568fac57a0bceba72b9c9ab580 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 17 Feb 2012 18:59:41 +0000 Subject: unify include guard defines, __$FILENAME__ without the underscores these clogged up the namespace for autocompleation which was annoying. --- intern/memutil/MEM_Allocator.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'intern/memutil/MEM_Allocator.h') diff --git a/intern/memutil/MEM_Allocator.h b/intern/memutil/MEM_Allocator.h index 99d0b5177f3..9541604b680 100644 --- a/intern/memutil/MEM_Allocator.h +++ b/intern/memutil/MEM_Allocator.h @@ -25,8 +25,8 @@ */ -#ifndef MEM_ALLOCATOR_H -#define MEM_ALLOCATOR_H +#ifndef __MEM_ALLOCATOR_H__ +#define __MEM_ALLOCATOR_H__ #include #include "guardedalloc/MEM_guardedalloc.h" @@ -89,4 +89,4 @@ struct MEM_Allocator } }; -#endif // MEM_ALLOCATOR_H +#endif // __MEM_ALLOCATOR_H__ -- cgit v1.2.3