Question

I have a doubt regarding inline functions. Inline functions will not involve any function calls but just replacement of function definition wherever the call is made to the inline function.Inline functions have type enforcement unlike macros. What will happen if recursive functions are made inline?

Was it helpful?

Solution

"inline" isn't a guarantee, it's a request.

Your recursive inline function won't (typically) be inline.

  • As some commenters point out, there are special cases (e.g. using compiler-specific pragmas) in which inlining is possible.

OTHER TIPS

inline is merely a suggestion to the compiler and does not guarantee that a function will be inlined.

Obviously, the compiler won't be able to inline a recursive function infinitely. It may not inline it at all or it may inline it just a few levels deep.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top