Developer Guide and Reference

ID 767253
Date 10/31/2024
Public
Document Table of Contents

inline-forceinline, Qinline-forceinline

Tells the compiler to treat inline routines as forceinline.

Syntax

Linux:

-inline-forceinline

Windows:

/Qinline-forceinline

Default

OFF

The compiler uses default heuristics for inline routine expansion.

Description

This option tells the compiler to treat inline routines as forceinline. It forces inlining of functions suggested for inlining.

CAUTION:

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.

IDE Equivalent

None

Alternate Options

None