clang 22.0.0git
clang::DeclaratorChunk::ArrayTypeInfo Struct Reference

#include "clang/Sema/DeclSpec.h"

Public Member Functions

void destroy ()

Public Attributes

unsigned TypeQuals: 5
 The type qualifiers for the array: const/volatile/restrict/__unaligned/_Atomic.
unsigned hasStatic: 1
 True if this dimension included the 'static' keyword.
unsigned isStar: 1
 True if this dimension was [*]. In this case, NumElts is null.
ExprNumElts
 This is the size of the array, or null if [] or [*] was specified.

Detailed Description

Definition at line 1274 of file DeclSpec.h.

Member Function Documentation

◆ destroy()

void clang::DeclaratorChunk::ArrayTypeInfo::destroy ( )
inline

Definition at line 1293 of file DeclSpec.h.

References destroy().

Referenced by destroy().

Member Data Documentation

◆ hasStatic

unsigned clang::DeclaratorChunk::ArrayTypeInfo::hasStatic

True if this dimension included the 'static' keyword.

Definition at line 1282 of file DeclSpec.h.

Referenced by clang::Sema::ActOnCXXNew(), clang::DeclaratorChunk::getArray(), and GetFullTypeForDeclarator().

◆ isStar

unsigned clang::DeclaratorChunk::ArrayTypeInfo::isStar

True if this dimension was [*]. In this case, NumElts is null.

Definition at line 1286 of file DeclSpec.h.

Referenced by clang::DeclaratorChunk::getArray(), and GetFullTypeForDeclarator().

◆ NumElts

Expr* clang::DeclaratorChunk::ArrayTypeInfo::NumElts

This is the size of the array, or null if [] or [*] was specified.

Since the parser is multi-purpose, and we don't want to impose a root expression class on all clients, NumElts is untyped.

Definition at line 1291 of file DeclSpec.h.

Referenced by clang::Sema::ActOnCXXNew(), clang::Sema::containsUnexpandedParameterPacks(), clang::DeclaratorChunk::getArray(), GetFullTypeForDeclarator(), and clang::Declarator::isArrayOfUnknownBound().

◆ TypeQuals

unsigned clang::DeclaratorChunk::ArrayTypeInfo::TypeQuals

The type qualifiers for the array: const/volatile/restrict/__unaligned/_Atomic.

Definition at line 1278 of file DeclSpec.h.

Referenced by clang::DeclaratorChunk::getArray(), and GetFullTypeForDeclarator().


The documentation for this struct was generated from the following file: