First, it's perfectly legal to use the inline keyword for functions
defined within a class:
struct MyClass
{
inline int someFunctions() { return 42; }
};
The keyword here is redundant, but not illegal.
Secondly, although the inline keyword is meant to be a hint to the
compiler, the only formal, required meaning that it has is to allow
multiple definitions of the function without causing undefined behavior
due to a violation of the one definition rule. And compilers do ignore
it in some cases:
Most compilers will ignore it when options designed for debugging are
given (or optimization is turned off), and will not actually inline
anything.
The best compilers will ignore it completely when maximum optimization
is turned on; whether a function is inlined or not will depend uniquely
on the compiler's analysis of the code and profiling data, and a given
function will be inlined at one location (where it is in the middle of a
tight loop), and not at another. (And unlike what some other posters
have said, this occurs even if the call site and the function definition
are in two different translation units.)
In between these two extremes, a lot of compilers do not do
inter-module analysis, and will, at least when some degree of
optimization is turned on, "take the hint", at least most of the time.
A recursive inline function, for example, will almost certainly not
be generated inline if the compiler cannot determine the depth of the
recursion at compile times. And most compilers are incapable of
generating a virtual function inline if they cannot determine the actual
type of the object with a localized static analysis, although some of
the best, given profiler output that reveals that one particular
overload will be called 99% of the time, may generate an if, and
inline that one case.
In general, you want to define as little as possible in the header file,
so for "exported" classes, you won't use inline (explicit or implicit)
unless the profiler says it is absolutely necessary. For local classes,
defined in the source file, it's more a matter of style whether you
define the functions in the class definition or not (and it may or may
not make a difference as to whether the compiler inlines them—as I
said, with the usual debugging options, most compilers won't inline
anything).