Simple Nano Circuit 0.0.2
macro.h
1#define RELEASE_AND_NULLIFY(ptr) \
2 if (ptr != nullptr) \
3 { \
4 delete ptr; \
5 ptr = nullptr; \
6 globalIcCount--; \
7 }
8