C++ ISO standard says, that:
\"A function defined within a class definition is an inline function.\"
Are there any compilers that IGNORE th
See my answer to a very similar question: When is "inline" ineffective? (in C)
Summary: inline is only required to allow multiple definitions. Any function calling changes is purely optional.