llvm/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp

//===- PDBSymbolTypeFunctionSig.cpp - --------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h"

#include "llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h"
#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
#include "llvm/DebugInfo/PDB/IPDBSession.h"
#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
#include "llvm/DebugInfo/PDB/PDBSymbol.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h"

#include <utility>

usingnamespacellvm;
usingnamespacellvm::pdb;

namespace {
class FunctionArgEnumerator : public IPDBEnumSymbols {};
}

std::unique_ptr<IPDBEnumSymbols>
PDBSymbolTypeFunctionSig::getArguments() const {}

void PDBSymbolTypeFunctionSig::dump(PDBSymDumper &Dumper) const {}

void PDBSymbolTypeFunctionSig::dumpRight(PDBSymDumper &Dumper) const {}

bool PDBSymbolTypeFunctionSig::isCVarArgs() const {}