enum ArrayType::ArraySizeModifier

Description

Capture whether this is a normal array (e.g. int X[4]) an array with a static size (e.g. int X[static 4]), or an array with a star size (e.g. int X[*]). 'static' is only allowed on function parameters.

Declared at: clang/include/clang/AST/Type.h:2961

Enumerators

NameValueComment
Normal0
Static1
Star2