Pour détecter les fuites de mémoire, un nouveau mot-clé est redéfini. C'est OK si j'utilise [Type 1]. Mais une erreur de compilation se produit si je décommente [Type 2]. Existe-t-il un moyen d'utiliser les deux types de new ?
#include <crtdbg.h>
#define new new(_CLIENT_BLOCK, __FILE__, __LINE__)
struct Foo
{
int m_N;
Foo() : m_N( 0 ) {}
};
int main( int argc, char* argv[] )
{
_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
_CrtSetReportMode(_CRT_WARN , _CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_WARN, _CRTDBG_FILE_STDOUT);
int* pI = new int( 1 );
delete pI;
Foo* pFoo = new Foo; // [Type 1]
//Foo* pFoo2 = new (pFoo) Foo(); // [Type 2]
return 0;
}