Using a checked STL implementation, anything available for free? Using a checked STL implementation, anything available for free? linux linux

Using a checked STL implementation, anything available for free?


The GNU implementation of the standard C++ library that comes with GCC has checked STL. Just add -D_GLIBCXX_DEBUG to your command line.

Yes, I've used it. I can't say for sure if it's caught bugs but it gives me more confidence that certain classes of bugs aren't being missed.

Because of performance overhead, we only use checked STL for debug builds.


I have not used it ever, but a quick search shows that STLPort has checked iterators in DEBUG mode.


  1. Microsoft's VC++ implements checking.
  2. It easily catches places where iterators refer to memory out-of-bounds of the STL container to which it belongs.
  3. I'm not sure, but I think you should try the Boost C++ library. It has myriad variety of features including concept checking, etc. Heck, its become the basis for the C++0x standard!