When should I write the keyword ‘inline’ for a function/method?
Oh man, one of my pet peeves. inline is more like static or extern than a directive telling the compiler to inline your functions. extern, static, inline are linkage directives, used almost exclusively by the linker, not the compiler. It is said that inline hints to the compiler that you think the function should be … Read more