public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: nmusatti@comm2000.it
To: gcc-gnats@gcc.gnu.org
Subject: c++/7965: Mistaken attempt to call a class template default constructor
Date: Wed, 18 Sep 2002 00:16:00 -0000	[thread overview]
Message-ID: <20020918070724.22649.qmail@sources.redhat.com> (raw)


>Number:         7965
>Category:       c++
>Synopsis:       Mistaken attempt to call a class template default constructor
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          rejects-legal
>Submitter-Id:   net
>Arrival-Date:   Wed Sep 18 00:16:00 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Nicola Musatti
>Release:        gcc version 3.2 (mingw special 20020817-1)
>Organization:
>Environment:
Windows 2000
>Description:
Compilation of the enclosed source results in the following error messages:

ConcreteClass.cpp: In function `int main()':
ConcreteClass.cpp:34: no matching function for call to `DirectAttribute<A,
   double>::DirectAttribute()'
ConcreteClass.cpp:4: candidates are: DirectAttribute<A,
   double>::DirectAttribute(const DirectAttribute<A, double>&)
ConcreteClass.cpp:8:                 DirectAttribute<C, T>::DirectAttribute(T
   C::*) [with C = A, T = double]
ConcreteClass.cpp:34: warning: unused variable `ConcreteClass<A> metaA'

Apparently an attempt is made to generate a (spurious) call to DirectAttribute's default constructor. The problem disappears if DirectAttribute's private member is removed (but not the constructor's argument).
>How-To-Repeat:
Compile the following code:

template <class C, typename T>
class DirectAttribute 
{
	public:
    	typedef T C::* MemberType;

    	DirectAttribute(MemberType m) : member(m) {}

    private:
    	MemberType member;
};

struct A
{
        double f;
};

template <class C> class ConcreteClass
{
};

template <> class ConcreteClass<A>
{
    public:
       ConcreteClass() : f1(&A::f) {}

    private:
    	DirectAttribute<A,double> f1;
};

int main()
{
	ConcreteClass<A> metaA;
}
>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:


             reply	other threads:[~2002-09-18  7:16 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-09-18  0:16 nmusatti [this message]
2002-09-28  7:16 lerdsuwa
2003-01-28 17:21 bangerth

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=20020918070724.22649.qmail@sources.redhat.com \
    --to=nmusatti@comm2000.it \
    --cc=gcc-gnats@gcc.gnu.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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).