Skip to content

inline

The inline keyword is used as a directive hint to compilers. Executing an inlined function does not redirect the instruction pointer to the function implementation. Instead, the function code is copy-and-pasted to function call sites.

Syntax

inline void fuBar()
{
}