Поделиться через


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).

Требования

Header: atldef.h

См. также

Основные понятия

Compiler Options Macros

ATL Macros