I was told long ago to make short functions/methods that are called often inline, by using the keyword inline and writing the body in the header file.
This was to optimize the code so there would be no overhead for the actual function call.
How does it look with that today? Does modern compilers (Visual Studio 2010’s in this case) inline such short functions automatically or is it still “necessary” to do so yourself?
inlinehas always been a hint to the compiler, and these days compilers for the most part make their own decisions in this regard (seeregister).In order to expand a function inline, the compiler has to have seen the definition of that function. For functions that are defined and used in only one translation unit, that’s no problem: put the definition somewhere before it’s used, and the compiler will decide whether to inline the function.
For functions that are used in more than one translation unit, in order for the compiler to see the definition of the function, the definition has to go in a header file. When you do that, you need to mark the function
inlineto tell the compiler and linker that it’s okay that there’s more than one definition of that function. (well, I suppose you could make the functionstatic, but then you could end up wasting space with multiple copies)