Hello!
I am using Visual Studio 2005 using C++.
I have a source file which has:
extern void* operator new(size_t n, const char* abc, const char* def);
and a new function that is being called in the code.
I receive an error:
error: function `void * operator new(unsigned int, const char *, const char *)' is initialized like a variable
and also a warning
warning: `new' initialized and declared `extern'
What does this error mean?
THank you so much
LB
Start Free Trial