struct ImplicitCXXConstructorArgs

Declaration

struct ImplicitCXXConstructorArgs { /* full declaration omitted */ };

Description

Additional implicit arguments to add to a constructor argument list.

Declared at: clang/include/clang/CodeGen/CodeGenABITypes.h:53

Member Variables

public SmallVector<llvm::Value*, 1> Prefix
Implicit arguments to add before the explicit arguments, but after the `*this` argument (which always comes first).
public SmallVector<llvm::Value*, 1> Suffix
Implicit arguments to add after the explicit arguments.