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:1100
Templates
- T
- unsigned int N
Member Variables
- public char[N * sizeof(T)] InlineElts