 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Maxim Yegorushkin Guest
|
Posted: Fri Feb 27, 2004 6:10 pm Post subject: error: function type may not come from a typedef |
|
|
I am wondering whether the snippet is well-formed. MS VC7.1 compiles it
without a complain, but Comeau online does not.
#include <iostream>
typedef void F();
struct some
{
F fun
{
std::cout << "Hello, World!n";
}
};
int main()
{
some().fun();
}
--
Maxim Yegorushkin
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
Ben Hutchings Guest
|
Posted: Sat Feb 28, 2004 4:15 am Post subject: Re: error: function type may not come from a typedef |
|
|
Maxim Yegorushkin wrote:
| Quote: | I am wondering whether the snippet is well-formed. MS VC7.1 compiles it
without a complain, but Comeau online does not.
#include
typedef void F();
struct some
{
F fun
{
std::cout << "Hello, World!n";
}
};
snip |
It is not well-formed - see section 8.3.5 paragraph 7 in the standard.
[ 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
|
|