C/C++ Programmer's Guide (G06.27+, H06.08+, J06.03+)

The pragma default settings are:
SYSTYPE OSSSYSTYPE GUARDIAN
N.A.N.A.TNS C compiler
N.A.N.A.G-series TNS c89 utility
Not setNot setTNS/R native C and C++ compilers
Not setNot setNative c89 and c99 utilities
N.A.N.A.TNS/E native C and C++ compilers
Usage Guidelines
INLINE_COMPILER_GENERATED_FUNCTIONS can be entered on the compiler RUN command
line (NMCPLUS) or be specified with the -Winline_compiler_generated_functions flag
of the c89 or the c99 utility.
NOTE: The INLINE_COMPILER_GENERATED_FUNCTIONS pragma affects the compiler-generated
constructor, destructor, and assignment operator (operator=).
INLINE_LIMIT
The INLINE_LIMIT command-line option specifies the maximum number of lines that the compiler
can inline. Where, n denotes the total number of lines in a member function. The inline limit count,
n, is specified as an integer. If n is 0, then there is no limit on the number of lines that the compiler
can inline. The default value is 10.
This limit applies only to member functions that are defined within their class definition without the
inline specifier.
For a function not to be inlined, set INLINE_LIMIT to an integer lesser than the total number of
the actual lines between the start position of a function definition and the end of the function. This
is just information for the compiler and it is not guaranteed that the function having lesser source
lines than INLINE_LIMIT will be inlined.
INLINE_LIMIT n
n
denotes the number of lines as an integer.
If n is 0, there is no limit on the number of lines that the compiler can inline. n should be in the
range 0 through 2147483647.
The pragma default settings are:
SYSTYPE OSSSYSTYPE GUARDIAN
N.A.N.A.TNS C compiler
N.A.N.A.G-series TNS c89 utility
Not setNot setTNS/R native C and C++ compilers
Not setNot setNative c89 utility
N.A.N.A.c99 utility
N.A.N.A.TNS/E native C and C++ compilers
INLINE_LIMIT 207