- Have you used a checked STL implementation?
- Did it find bugs you were not expecting?
- Is there one I can try on Linux for free?
Have you used a checked STL implementation? Did it find bugs you were not
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The GNU implementation of the standard C++ library that comes with GCC has checked STL. Just add
-D_GLIBCXX_DEBUGto 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.