1*06f32e7eSjoerg //===- PDBSymbolTypeArray.cpp - ---------------------------------*- C++ -*-===//
2*06f32e7eSjoerg //
3*06f32e7eSjoerg // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*06f32e7eSjoerg // See https://llvm.org/LICENSE.txt for license information.
5*06f32e7eSjoerg // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*06f32e7eSjoerg //
7*06f32e7eSjoerg //===----------------------------------------------------------------------===//
8*06f32e7eSjoerg 
9*06f32e7eSjoerg #include "llvm/DebugInfo/PDB/PDBSymbolTypeArray.h"
10*06f32e7eSjoerg 
11*06f32e7eSjoerg #include "llvm/DebugInfo/PDB/PDBSymDumper.h"
12*06f32e7eSjoerg 
13*06f32e7eSjoerg #include <utility>
14*06f32e7eSjoerg 
15*06f32e7eSjoerg using namespace llvm;
16*06f32e7eSjoerg using namespace llvm::pdb;
17*06f32e7eSjoerg 
dump(PDBSymDumper & Dumper) const18*06f32e7eSjoerg void PDBSymbolTypeArray::dump(PDBSymDumper &Dumper) const {
19*06f32e7eSjoerg   Dumper.dump(*this);
20*06f32e7eSjoerg }
21*06f32e7eSjoerg 
dumpRight(PDBSymDumper & Dumper) const22*06f32e7eSjoerg void PDBSymbolTypeArray::dumpRight(PDBSymDumper &Dumper) const {
23*06f32e7eSjoerg   Dumper.dumpRight(*this);
24*06f32e7eSjoerg }
25