--- parser3/src/targets/isapi/Attic/pa_pool.C 2001/09/15 13:20:22 1.5 +++ parser3/src/targets/isapi/Attic/pa_pool.C 2001/11/05 11:46:30 1.9 @@ -2,10 +2,9 @@ Parser: ISAPI memory manager impl. Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) + Author: Alexander Petrosyan (http://paf.design.ru) - Author: Alexander Petrosyan (http://design.ru/paf) - - $Id: pa_pool.C,v 1.5 2001/09/15 13:20:22 parser Exp $ + $Id: pa_pool.C,v 1.9 2001/11/05 11:46:30 paf Exp $ */ #include @@ -13,7 +12,7 @@ #include "pa_pool.h" #include "pool_storage.h" -void *Pool::real_malloc(size_t size) { +void *Pool::real_malloc(size_t size, int place) { return fstorage? static_cast(fstorage)->malloc(size): ::malloc(size); }