c:\program files\mingw\bin\..\lib\gcc\mingw32\4.5.0\include\c++\bits\stl_algo.h||In function '_RandomAccessIterator std::__unguarded_partition(_RandomAccessIterator, _RandomAccessIterator, const _Tp&, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<lvlist*, std::vector<lvlist> >, _Tp = lvlist, _Compare = bool (*)(lvlist, lvlist)]':| |
and
c:\program files\mingw\bin\..\lib\gcc\mingw32\4.5.0\include\c++\bits\stl_algo.h|2223|internal compiler error: Segmentation fault| |
WTF is going here? Anyone has seen something like this before?
I can't post the code because it's about 1500 lines but I'll try to find out what causes g++ to crash.
Last edited on
Looks like you are trying to access an iterator that is invalid. Perhaps it is pointing outside its associated container?
Now it compiles just fine. This is really weird...