This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


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>


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]