| 38 | |
| 39 | template<class DataPtr> |
| 40 | inline void deleteDemandDrivenData(DataPtr& dataPtr) |
| 41 | { |
| 42 | if (dataPtr) |
| 43 | { |
| 44 | delete dataPtr; |
| 45 | dataPtr = 0; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | |
| 50 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // |
no outgoing calls
no test coverage detected