Tagged Questions

5
votes
5answers
3k views

How to make std::vector's operator[] compile doing bounds checking in DEBUG but not in RELEASE

I'm using Visual Studio 2008. I'm aware that std::vector has bounds checking with the at() function and has undefined behaviour if you try to access something using the operator [] incorrectly (out ...
1
vote
2answers
260 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 ...