public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/48541] New: std::function(std::_Function_base) should use std::addressof
@ 2011-04-10 13:43 n.fujita12 at gmail dot com
  2011-04-10 13:59 ` [Bug libstdc++/48541] " redi at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: n.fujita12 at gmail dot com @ 2011-04-10 13:43 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48541

           Summary: std::function(std::_Function_base) should use
                    std::addressof
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: n.fujita12@gmail.com


In std::_Function_base::_M_get_pointer, operator & is used to get a pointer of
the functor.
So, some callable objects which override operator & and they don't return their
pointer couldn't be held by std::function.

----
struct X {
  void operator ()() const {
    std::cerr << "X()\n";
  }
  float operator &() const {
    return 1.2345;
  }
};
int main() {
  X x;
  std::function<void ()> f(x);
  return 0;
}
----


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-04-11 18:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-10 13:43 [Bug libstdc++/48541] New: std::function(std::_Function_base) should use std::addressof n.fujita12 at gmail dot com
2011-04-10 13:59 ` [Bug libstdc++/48541] " redi at gcc dot gnu.org
2011-04-10 16:29 ` redi at gcc dot gnu.org
2011-04-10 16:36 ` redi at gcc dot gnu.org
2011-04-10 16:37 ` redi at gcc dot gnu.org
2011-04-11 18:32 ` paolo.carlini at oracle dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).