This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: PR3042
- To: Jason Merrill <jason_merrill at redhat dot com>
- Subject: Re: PR3042
- From: David Edelsohn <dje at watson dot ibm dot com>
- Date: Mon, 11 Jun 2001 13:45:14 -0400
- cc: Mark Mitchell <mark at codesourcery dot com>, gdr at codesourcery dot com, Gabriel dot Dos-Reis at cmla dot ens-cachan dot fr, bkoz at nabi dot net, libstdc++ at gcc dot gnu dot org
GCC 3.0 current behavior is:
template <> int Y<int>::m;
produces a reference without storage allocation.
template <typename Z> int Y<int>::m;
creates a common symbol.
David