CREATE_FUNC macro NULL -> nullptr

This commit is contained in:
namhyeonuk 2015-10-31 20:18:39 +09:00
parent 6115e92284
commit 7fe2b87574
1 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,8 @@ static __TYPE__* create() \
else \
{ \
delete pRet; \
pRet = NULL; \
return NULL; \
pRet = nullptr; \
return nullptr; \
} \
}