struct SmallVectorStorage

Declaration

template <typename T, unsigned int N>
struct SmallVectorStorage { /* full declaration omitted */ };

Description

Storage for the SmallVector elements. This is specialized for the N=0 case to avoid allocating unnecessary storage.

Declared at: llvm/include/llvm/ADT/SmallVector.h:819

Templates

T
unsigned int N

Member Variables

public AlignedCharArrayUnion<T>[N] InlineElts