Stardock 0.0.1
File System Points Synchronizer
Loading...
Searching...
No Matches
memory.hh
Go to the documentation of this file.
1#ifndef MEMORY_HH
2#define MEMORY_HH
4namespace stardock {
5 #define IF_DIRTY_FREE_PTR(ptr) \
6 if (ptr != nullptr) { \
7 free(ptr); \
8 ptr = nullptr;\
9 }
10}
11#endif//MEMORY_HH
Definition align.hh:5