 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Glen Low Guest
|
Posted: Wed Sep 29, 2004 5:54 pm Post subject: SFINAE and incomplete types |
|
|
Hi folks, it's your friendly neighborhood SFINAE pest again.
Qn of the week: does SFINAE work with incomplete types?
Consider the following:
struct X;
template <typename U> void f (typename U::inner* i)
{
std::cout << "ho";
}
template
{
std::cout << "hie";
}
int main ()
{
f
}
According to gcc (and possibly online Comeau), this is valid and
outputs "hie". However the Standard does say in its SFINAE passage
(14.8.2/2):
"Attempting to use a type in the qualifier portion of a qualified name
that names a type when that type does not contain the specified
member, or if the specified member is not a type where a type is
required."
X is an incomplete type, so you *could* argue that it is a "type that
does not contain the specified member", but is this a correct
interpretation?
Cheers,
Glen Low, Pixelglow Software
www.pixelglow.com
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|