public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/55942] New: [C++11] sorry, unimplemented: calling a member function of the object being constructed in a constant expression
@ 2013-01-11 14:43 redi at gcc dot gnu.org
  2013-05-07 17:04 ` [Bug c++/55942] " mattyclarkson at gmail dot com
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: redi at gcc dot gnu.org @ 2013-01-11 14:43 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 55942
           Summary: [C++11] sorry, unimplemented: calling a member
                    function of the object being constructed in a constant
                    expression
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Keywords: FIXME
          Severity: minor
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: redi@gcc.gnu.org


struct A
{
    constexpr explicit A(bool b) : o{flip(b)} { }

    constexpr bool flip(bool b) { return !b; }

    bool o;
};

ce.cc: In constructor 'constexpr A::A(bool)':
ce.cc:3:49: sorry, unimplemented: calling a member function of the object being
constructed in a constant expression
     constexpr explicit A(bool b) : o{flip(b)} { }
                                                 ^

I found this by accident because I meant to define A::flip as a static member
function, which would have worked. Omitting the static gives the "sorry" above.


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

end of thread, other threads:[~2014-11-18 16:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-11 14:43 [Bug c++/55942] New: [C++11] sorry, unimplemented: calling a member function of the object being constructed in a constant expression redi at gcc dot gnu.org
2013-05-07 17:04 ` [Bug c++/55942] " mattyclarkson at gmail dot com
2013-05-07 18:21 ` paolo.carlini at oracle dot com
2014-11-18 15:58 ` paolo.carlini at oracle dot com
2014-11-18 16:03 ` paolo at gcc dot gnu.org
2014-11-18 16:03 ` 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).