This is the mail archive of the
libstdc++@sourceware.cygnus.com
mailing list for the libstdc++ project. See the libstdc++
home page for more information.
[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index] [Subject Index] [Author Index] [Thread Index]
Re: Static data members in template declarations
- To: Alexandre Oliva <oliva@dcc.unicamp.br>
- Subject: Re: Static data members in template declarations
- From: Jason Merrill <jason@cygnus.com>
- Date: 01 Nov 1998 23:15:20 -0800
- Cc: mark@markmitchell.com, egcs@cygnus.com, stl@sgi.com, libstdc++-v3@cygnus.com
- In-Reply-To: Alexandre Oliva's message of 02 Nov 1998 03:04:40 -200
- References: <199811020050.QAA18401@smtp.earthlink.net> <or7lxe65xz.fsf@araguaia.dcc.unicamp.br>
>>>>> Alexandre Oliva <oliva@dcc.unicamp.br> writes:
> Within the scope of S<T>, `a', `S::a' and `S<T>::a' are all the same
> thing
Nope. S::a and S<T>::a are the same, but they are dependent, and `a' is
not. g++ doesn't currently implement that consistently.
Jason