//memory leak detection //#define CRTDBG_MAP_ALLOC #include #include #include "todoList.h" #include "javert.h" int main() { Javert *tester; tester = new Javert; tester -> RunTest(); delete tester; //print memory leak info if any in the Output field of the compiler return _CrtDumpMemoryLeaks(); }