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

This commit is contained in:
Geequlim 2016-05-27 14:27:19 +08:00
parent b0a97579ac
commit 728ce570a5
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)