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]

Re: purify 4.1 and egcs still appear to be incompatible.



Forgot one thing: an example to reproduce the problem:

#include <vector>
#include <iostream.h>

main(int, char **) {
    vector<int> array;
    array.push_back(5);
    array.push_back(7);
    cout << "Array contains " << array.back();
    array.pop_back();
    cout << " and " << array.back() << endl;
}

Brad Garcia
   ___/  __ /  __ /  ___/ "Being the Linux of digital media
  __/   /  /  / _/  __/    would be a very good life."
_/    ____/ _/ _| ____/      - Jean-Louis Gassee, CEO of Be, Inc.



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