The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
ATL_NOINLINE
A symbol that indicates a function should not be inlined.
ATL_NOINLINE inline
myfunction
{
...
}
- myfunction
The function that should not be inlined.
Use this symbol if you want to ensure a function does not get inlined by the compiler, even though it must be declared as inline so that it can be placed in a header file. Expands to __declspec(noinline).
Requirements
Header: atldef.h
Show: