On 2006-02-07, Aloo <an************@rediffmail.com> wrote:
Let's say I have a function
func()
{
...........
func();
.........
}
I.e it is a recursive function. What happens if I declare it inline
It won't be inlined, or it will only be inlined a certain number of
times.
There is no _requirement_ that the compiler insert inline code at any
given place the function is called.