dbmalloc Tutorial: C++ Issues
Using dbmalloc with C++ isn't as straight-forward as it is with C.
Several issues are present that make it difficult to use some C++
source with the <debug/malloc.h> header file.
- new redefinition can cause syntax problems.
- Any calls to new before inclusion can't be tracked.
- Allocation of an array of objects with constructors or
destructors cannot be used with dbmalloc.
Acknowledgement and Disclaimer