This is the mail archive of the gcc-help@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]

Re: no matching function for call to``vector<C1,allocator<C1>>::at (int &) const'


Hi Ajay,

You can check out which header files are introduced into your source code
via:

g++ -M foo.cpp > foo.d

...and take a critical look at foo.d.  It will tell you which header files,
in particular compiler header files, are being pulled in.

Are those header files the ones from the old 2.10 or 2.90 Standard Library,
or are they the ones from the 3.x Standard Library?  (The Standard Library
has it's own version, independent of the GCC release.)

If you are unsure, you might want to open the vector header file (i.e.,
stl_vector.h has the implementation) and confirm that it has an at() method.

--Eljay


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