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
Name | Value | Comment |
---|---|---|
Normal | 0 | |
Static | 1 | |
Star | 2 |