public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/48582] New: Template non-type arguments doesn't accept null pointer constant value
@ 2011-04-12 20:33 boostcpp at gmail dot com
  2011-08-25 20:21 ` [Bug c++/48582] " gintensubaru at gmail dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: boostcpp at gmail dot com @ 2011-04-12 20:33 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: Template non-type arguments doesn't accept null
                    pointer constant value
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: boostcpp@gmail.com


According to current C++0x draft 14.3.2 [temp.arg.nontype],
template non-type arguments can be a constant expression that evaluates to a
null pointer value or null member pointer value.
This change was made in n1905.

So the following code is well-formed.

template < void * = nullptr > void f() { }

int main()
{
    f() ;
    f<nullptr>() ;
    f<0>() ;

    constexpr void * ptr = nullptr ;
    f<ptr>() ;
}

But current gcc does not accept it.
Or is this just unimplemented feature?


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

end of thread, other threads:[~2011-08-28 15:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-12 20:33 [Bug c++/48582] New: Template non-type arguments doesn't accept null pointer constant value boostcpp at gmail dot com
2011-08-25 20:21 ` [Bug c++/48582] " gintensubaru at gmail dot com
2011-08-27  3:04 ` [Bug c++/48582] [C++0x] [DR 342] " jason at gcc dot gnu.org
2011-08-28 16:08 ` jason at gcc dot gnu.org
2011-08-28 20:16 ` jason at gcc dot gnu.org

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).