Tells the compiler to treat inline routines as forceinline.
Linux: | -inline-forceinline |
Windows: | /Qinline-forceinline |
OFF |
The compiler uses default heuristics for inline routine expansion. |
This option tells the compiler to treat inline routines as forceinline. It forces inlining of functions suggested for inlining.
When you use this option to change the meaning of inline to be "forceinline", the compiler will aggressively inline these functions, so it may run out of memory and terminate with an "out of memory" message.
None