does your compiler / lint catch infinite recursion ?

J

John

Does anybody know if there are any compilers that warn of infinite
recursion ( a very simple case )

like

void foo( int a )
{
return foo( a );
}

gcc does not seem to and lint does not seem to catch it either.
 
V

Victor Bazarov

John said:
Does anybody know if there are any compilers that warn of infinite
recursion ( a very simple case )

like

void foo( int a )
{
return foo( a );
}

gcc does not seem to and lint does not seem to catch it either.

Visual C++ issues the warning C4717 when compiling this:

void foo(int a)
{
foo(a);
}

int main()
{
foo(42);
}

V
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,046
Latest member
Gavizuho

Latest Threads

Top