new file: LSListItem.h new file: LSMacros.h modified: LSString.h modified: LSString.vcxproj new file: LSVector.h modified: main.cpp
15 lines
No EOL
216 B
C
15 lines
No EOL
216 B
C
#pragma once
|
|
|
|
#define DELETE_POINTER(Pointer) \
|
|
if (Pointer != nullptr)\
|
|
{\
|
|
delete Pointer;\
|
|
Pointer = nullptr;\
|
|
}
|
|
|
|
#define DELETE_ARRAY(Array) \
|
|
if (Array != nullptr)\
|
|
{\
|
|
delete[] Array;\
|
|
Array = nullptr;\
|
|
} |