What is the advantages/disadvantages of using inline functions in C++? I see that it only increases performance for the code that the compiler outputs, but with today\'s opt
inline allows you to place a function definition in a header file and #include that header file in multiple source files without violating the one definition rule.