Folks,
I was reading "Thinking in C++" (Chap - Inline functions), where I encountered this statement.
"The compiler also cannot perform inlining if the address of the function is taken implicitly or explicitly".
What does that mean by "taking address of function implicitly or explicitly
" ?
Why it is not possible to inline in this case ?
Thanks.
Actually, the quote may mislead.
If a function address is taken, then it is necessary to generate the function in the library/executable, because the execution of a function by its address consist in jumping the instruction pointer to the block of code describing the function.
However, it certainly does not prevent the compiler to inline the function in other places, when called directly.
First, a review:
Second, inlining examples: