LSFramework/Software/Framework/src/LSMacros.h
2022-06-23 13:44:39 +02:00

15 lines
No EOL
224 B
C

#pragma once
#define DELETE_POINTER(pPointer) \
if (pPointer != nullptr)\
{\
delete pPointer;\
pPointer = nullptr;\
}
#define DELETE_ARRAY(vArray) \
if (vArray != nullptr)\
{\
delete[] vArray;\
vArray = nullptr;\
}