Fixing a compilation failure in ConnectSE caused by revno 3803.

modified:
  storage/connect/tabxml.h
This commit is contained in:
Alexander Barkov 2013-08-22 13:10:31 +04:00
parent 4712fb14b9
commit 879629e6b2

View File

@ -211,6 +211,7 @@ class XMLCOLX : public XMLCOL {
void * operator new(size_t size, PXMLCOL colp) {return colp;}
#if !defined(__BORLANDC__)
// Avoid warning C4291 by defining a matching dummy delete operator
void operator delete(void *, size_t size) {}
void operator delete(void *, PXMLCOL) {}
#endif
}; // end of class XMLCOLX