BFLibCPP 0.1
CPP Library
Loading...
Searching...
No Matches
delete.hpp
Go to the documentation of this file.
1
6#ifndef DELETE_HPP
7#define DELETE_HPP
8
9#define Delete(x) if (x != 0) {delete x; x = 0; }
10#define BFDelete(x) if (x != 0) {delete x; x = 0; }
11
12#endif // DELETE_HPP
13