|
From: Nicholas N. <nj...@ca...> - 2003-05-02 07:26:52
|
On Fri, 2 May 2003, James Maynard wrote:
> I am trying to suppress, some of the, still reachable errors in our memory checking.
> I have used
> {
> STL_Problem_One
> Memcheck:Leak
> fun:_STL::__node_alloc*
> }
>
> and nothing gets suppressed can anyone help
C++ names have to be _mangled_, is this one? You can see the mangled
names in error messages using --demangle=no. If you have a CVS HEAD
version, you can use --gen-suppressions=yes to automatically generate the
suppressions for you.
N
|