Sitter på win2k, Visual 6.0, SGI's STL och vill byta ut minnes allocatorn för en vector till malloc men det funkar inte så bra...
malloc_alloc
och
__malloc_alloc
är undefined och detta är vad de heter när man byta ut det i linux på SGI's STL, gcc 2.9.x och 3.x
#ifdef WIN32
vector<int, __malloc_alloc<0> > v1;
#else
vector<int, __malloc_alloc<0> > v1;
#endif
Någon som har en idé om vad malloc allocatorn heter under de WIndows förhållande som jag har?