class DeducedTemplateArgument

Declaration

class DeducedTemplateArgument : public TemplateArgument { /* full declaration omitted */ };

Description

Captures a template argument whose value has been deduced via c++ template argument deduction.

Declared at: clang/include/clang/Sema/Template.h:266

Inherits from: TemplateArgument

Member Variables

private bool DeducedFromArrayBound = false
For a non-type template argument, whether the value was deduced from an array bound.

Method Overview

Inherited from TemplateArgument:

Methods

DeducedTemplateArgument()

Declared at: clang/include/clang/Sema/Template.h:272

DeducedTemplateArgument(
    const clang::TemplateArgument& Arg,
    bool DeducedFromArrayBound = false)

Declared at: clang/include/clang/Sema/Template.h:274

Parameters

const clang::TemplateArgument& Arg
bool DeducedFromArrayBound = false

DeducedTemplateArgument(
    clang::ASTContext& Ctx,
    const llvm::APSInt& Value,
    clang::QualType ValueType,
    bool DeducedFromArrayBound)

Description

Construct an integral non-type template argument that has been deduced, possibly from an array bound.

Declared at: clang/include/clang/Sema/Template.h:280

Parameters

clang::ASTContext& Ctx
const llvm::APSInt& Value
clang::QualType ValueType
bool DeducedFromArrayBound

void setDeducedFromArrayBound(bool Deduced)

Description

Specify whether the given non-type template argument was deduced from an array bound.

Declared at: clang/include/clang/Sema/Template.h:293

Parameters

bool Deduced

bool wasDeducedFromArrayBound() const

Description

For a non-type template argument, determine whether the template argument was deduced from an array bound.

Declared at: clang/include/clang/Sema/Template.h:289