Fix dtinfo search engine
This commit is contained in:
committed by
Jon Trulson
parent
0254ebc0b4
commit
38dfc9e235
@@ -136,14 +136,14 @@ void DtMmdbQuit()
|
||||
|
||||
}
|
||||
|
||||
void* operator new( size_t sz )
|
||||
void* operator new( size_t sz ) throw(std::bad_alloc)
|
||||
{
|
||||
void* p = (void*)malloc(sz);
|
||||
//printf("a::operator new called(). sz= %d, allo=%x\n", sz, p);
|
||||
return p;
|
||||
}
|
||||
|
||||
void operator delete( void* p )
|
||||
void operator delete( void* p ) throw()
|
||||
{
|
||||
//printf("a::operator free called(). alloc= %x\n", p);
|
||||
if ( p )
|
||||
|
||||
@@ -35,7 +35,7 @@ class collectionIterator
|
||||
{
|
||||
public:
|
||||
collectionIterator(info_base*, int set_position);
|
||||
~collectionIterator();
|
||||
virtual ~collectionIterator();
|
||||
|
||||
// advance the iterator to the next position.
|
||||
// A newly constructed iterator's position is
|
||||
|
||||
Reference in New Issue
Block a user