[Bug libstdc++/45999] runtime error in std::vector python pretty printer.

redi at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Wed Oct 13 09:43:00 GMT 2010


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45999

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> 2010-10-13 09:42:58 UTC ---
Reduced

#include <vector>

int main()
{
    std::vector<bool> b(4);
    b.push_back(1);
    return 0;
}


There's no pretty printer for vector<bool>



More information about the Gcc-bugs mailing list