Inline functions

With inline functions, when the function is called from a global perspective. Does the function transplant from global to local in the function its being called in. Or am I completely off?
Last edited on
It's basically as if you have replaced the function call with the code it contains. I'm not sure what you mean by "global perspective" though.
Thanks Zhuge,

So an inline function is when a function is called, where the call is, it is substituted with the code in the funtion's block.

What I mean by global perspective is global scope.
Topic archived. No new replies allowed.