/*
- * $Id: mime.cc,v 1.105 2002/10/13 20:35:02 robertc Exp $
+ * $Id: mime.cc,v 1.106 2002/10/14 11:51:07 adrian Exp $
*
* DEBUG: section 25 MIME Parsing
* AUTHOR: Harvest Derived
class mimeEntry {
public:
- void *operator new (unsigned int byteCount);
+ void *operator new (size_t byteCount);
void operator delete (void *address);
char *pattern;
static mimeEntry **MimeTableTail = &MimeTable;
void *
-mimeEntry::operator new (unsigned int byteCount)
+mimeEntry::operator new (size_t byteCount)
{
return xcalloc(1, byteCount);
}
/*
- * $Id: store.cc,v 1.548 2002/10/13 20:35:04 robertc Exp $
+ * $Id: store.cc,v 1.549 2002/10/14 11:55:17 adrian Exp $
*
* DEBUG: section 20 Storage Manager
* AUTHOR: Harvest Derived
MemPool *_StoreEntry::pool = NULL;
void *
-_StoreEntry::operator new (unsigned int bytecount)
+_StoreEntry::operator new (size_t bytecount)
{
assert (bytecount == sizeof (_StoreEntry));
if (!pool) {