This is the mail archive of the gdb@sourceware.org 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]

Re: How to print the return value of template member functions (C++)?


"Peng Yu" <pengyu.ut@gmail.com> writes:

> $ cat main.cc
> #include <boost/tuple/tuple.hpp>
> #include <iostream>
>
> int main() {
>  boost::tuple<int, int> a(10, 10);
>  std::cout << a.get<0>() << " " << a.get<1>() << std::endl;
> }
>
>
> (gdb) p a.get<0>()
> Couldn't find method
> boost::tuples::tuple<int,int,boost::tuples::null_type,boost::tuples::null_type,boost::tuples::null_type,boost::tuples::null_type,boost::tuples::null_type,boost::tuples::null_type,boost::tuples::null_type,boost::tuples::null_type>::get<0>

I can't reproduce that with gdb 6.6.

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
PGP key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


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