Tagged Questions
5
votes
8answers
1k views
How do virtual destructors work?
Few hours back I was fiddling with a Memory Leak issue and it turned out that I really got some basic stuff about virtual destructors wrong! Let me put explain my class design.
class Base
{
virtual ...
3
votes
2answers
547 views
Visual C++ debugger and BoundsChecker mystery
Look at this screenshot of a Visual C++ debugger session:
The execution point is now inside a virtual function. "mDb" is a reference to an object which is the member of that class. "mDb" has the ...
1
vote
2answers
251 views
BoundsChecker shows incorrect memory leak message
I'm using BoundsChecker9.1 with visual c++. I have a class
class Sample{
public:
vector<AnotherClass> x;
};
When I run my program the BoundsChecker tool reports all push_back() calls such as ...
0
votes
1answer
410 views
DevPartner BoundsChecker breaks my program
I am working on a program which I suspect to have one or more memory leaks. Some other answer on Stack Overflow told me to try DevPartner BoundsChecker (one of many others I tried).
Now when I run my ...