class Parser::LateParsedAttrList

Declaration

class Parser::LateParsedAttrList : public SmallVector { /* full declaration omitted */ };

Description

This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small. It contains some number of elements in-place, which allows it to avoid heap allocation when the actual number of elements is below that threshold. This allows normal "small" cases to be fast without losing generality for large inputs.

Declared at: clang/include/clang/Parse/Parser.h:1333

Inherits from: SmallVector

Member Variables

private bool ParseSoon

Method Overview

Methods

LateParsedAttrList(bool PSoon = false)

Declared at: clang/include/clang/Parse/Parser.h:1335

Parameters

bool PSoon = false

bool parseSoon()

Declared at: clang/include/clang/Parse/Parser.h:1337