I have overloaded the new and delete operator, then I found this in the source code:<br><br>// note: this should really be a member of the load_ptr function<br>// below but some compilers still complain about this.<br>template<class T><br> struct heap_allocator<br>{<br> #if 0<br> // note: this fails on msvc 7.0 and gcc 3.2<br> template <class U, U x> struct test;<br> typedef char* yes;<br> typedef int* no;<br> template <class U><br> yes has_op_new(U*, test<void* (*)(std::size_t), &U::operator new>* = 0);<br> no has_op_new(...);<br><br> template<class U><br> T * new_operator(U);<br><br> T * new_operator(yes){<br> return (T::operator new)(sizeof(T));<br> }<br> T * new_operator(no){<br> return static_cast<T *>(operator new(sizeof(T)));<br> }<br> static T * invoke(){<br> return new_operator(has_op_new(static_cast<T *>(NULL)));<br> }<br> #else<br> // while this doesn't handle operator new overload for class T<br> static T * invoke(){<br> return static_cast<T *>(operator new(sizeof(T)));<br> }<br> #endif<br>}; <br><br><br>If I am using a msvc that this does not fail on, is there anything wrong with implementing this code, or will I get a bunch of errors or "hidden" bugs? Also, are there any plans on implementing this in a future release(I am guessing it is a work in progress issue)?<br> <br>Thanks in advance.<br><br><br>/Jacob Holm<br><br>