|
From: Nicholas N. <nj...@cs...> - 2005-04-24 01:16:39
|
On Sun, 24 Apr 2005 sv...@va... wrote: > Log: > Add intercepts for operator new(unsigned long) and operator > new[](unsigned long). The 32-bit ones take unsigned int args, not > unsigned longs, and so the existing name-set did not capture them. The parameters are actually std::size_t, which should be 32-bits on 32-bit platforms and 64-bits on 64-bit platforms, so I'm confused by this change... N |