Delete diagnostic code inside #if 0 ... #endif

This commit is contained in:
Andrew Johnson
2012-04-12 11:26:03 -05:00
parent 1137f1b0b0
commit bb4d470145

View File

@@ -61,21 +61,6 @@ gddApplicationTypeTable::gddApplicationTypeTable(aitUint32 tot)
GenerateTypes();
}
#if 0
void* operator new(size_t x)
{
void* v = (void*)malloc(x);
fprintf(stderr,"%8.8x In operator new %d\n",v,(int)x);
return v;
}
void operator delete(void* x)
{
fprintf(stderr,"%8.8x In operator delete\n",x);
free((char*)x);
}
#endif
gddApplicationTypeTable::~gddApplicationTypeTable(void)
{
unsigned i,j;