This is the mail archive of the gdb@sources.redhat.com mailing list for the GDB 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]

problems with list...


Hi all.

I've been having problems using list functions inside of gdb.

-----------------------------------
#include <list>
#include <vector>

using namespace std;

main(){
list<int> l;
vector<int> v;
l.push_back(0);
l.push_back(1);
v.push_back(0);
v.push_back(1);

}
--------------------------------------------

if I try:
"p l.size()"

I get a "Cannot evaluate function -- may be inlined" even if I compile with an -fno-inline.
"ptype l" gives something reasonable which shows "size_t size() const;"

None of the same problems with the vector.

Does anyone have any idea why this doesn't work?

Thanks in advance,
Craig


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