Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - compile error on delete and delete [] operators
Hi, I have a problem when I try to use the novodex physic engine(version 2.1.2), I have errors on the operators delete and delete [] because they include the file and the line as parameters : NX_INLINE void operator delete(void* p, const char*, int); NX_INLINE void operator delete[](void* p, const char*, int); and the errors are: Error: must be void operator delete(void * [,size_t]); Error: must be void operator delete[](void * [,size_t]); How can i make the compiler accept this operator surcharge ??? Is it a compile option ? Please help me . Dec 28 2004
"amaury pouly" <amaury_member pathlink.com> wrote in message news:cqrgo7$vbi$1 digitaldaemon.com...Hi, I have a problem when I try to use the novodex physic engine(version Feb 07 2005
|