CXCursor_ExceptionSpecificationKind

\brief Describes the exception specification of a cursor.

A negative value indicates that the cursor is not a function declaration.

Values

ValueMeaning
none0

\brief The cursor has no exception specification.

dynamicNone1

\brief The cursor has exception specification throw()

dynamic2

\brief The cursor has exception specification throw(T1, T2)

msAny3

\brief The cursor has exception specification throw(...).

basicNoexcept4

\brief The cursor has exception specification basic noexcept.

computedNoexcept5

\brief The cursor has exception specification computed noexcept.

unevaluated6

\brief The exception specification has not yet been evaluated.

uninstantiated7

\brief The exception specification has not yet been instantiated.

unparsed8

\brief The exception specification has not been parsed yet.

Meta