When should I write the keyword inline for a function/method in C++?
inline
After seeing some answers, some related questions:
When should I <
You want to put it in the very beginning, before return type. But most Compilers ignore it. If it's defined, and it has a smaller block of code, most compilers consider it inline anyway.