Add spaces to macros in memory.h to make C++11 compilers happy

(cherry picked from commit 728ce570a5)
This commit is contained in:
Geequlim 2016-05-27 14:27:19 +08:00 committed by Rémi Verschelde
parent 71487793df
commit 178168aa8a
1 changed files with 4 additions and 5 deletions

View File

@ -224,7 +224,6 @@ void * operator new(size_t p_size,void *p_pointer,size_t check, const char *p_de
#endif #endif
#ifdef DEBUG_MEMORY_ENABLED #ifdef DEBUG_MEMORY_ENABLED
#define dynalloc(m_size) Memory::alloc_dynamic(m_size, __FILE__ ":" __STR(__LINE__) ", type: DYNAMIC") #define dynalloc(m_size) Memory::alloc_dynamic(m_size, __FILE__ ":" __STR(__LINE__) ", type: DYNAMIC")
#define dynrealloc(m_mem,m_size) m_mem.resize(m_size) #define dynrealloc(m_mem,m_size) m_mem.resize(m_size)