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

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top