From: "Peng Yu" <pengyu.ut@gmail.com>
To: gdb@sourceware.org
Subject: How to debug C++ functor in gdb?
Date: Sun, 29 Oct 2006 21:01:00 -0000 [thread overview]
Message-ID: <366c6f340610291301p523de441r6b691975822a9131@mail.gmail.com> (raw)
Hi,
I have a test program using functor below.
I set a break point at the line indicated in the comment. Then I call
the following command in gdb. It failed. Is there any way that I can
call the functor _f?
(gdb) p _f(10)
Couldn't find method functor<function<int> >::_f
Thanks,
Peng
#include <functional>
template <typename F>
class functor {
public:
functor(const F &f) : _f(f) { }
typename F::result_type operator()(double x) const { return
_f(static_cast<int>(x)); }//set break point here in gdb
private:
F _f;
};
template <typename T>
struct function : public std::unary_function<T, double> {
double operator()(T x) const { return static_cast<double>(x); }
};
int main() {
functor<function<int> > g((function<int>()));
g(1.1);
}
next reply other threads:[~2006-10-29 21:01 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-10-29 21:01 Peng Yu [this message]
2006-10-29 23:20 ` Andreas Schwab
2006-11-15 0:12 ` Peng Yu
2006-11-15 1:23 ` Andreas Schwab
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=366c6f340610291301p523de441r6b691975822a9131@mail.gmail.com \
--to=pengyu.ut@gmail.com \
--cc=gdb@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox