1*06f32e7eSjoerg //===- PDBSymbolTypePointer.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/PDBSymbolTypePointer.h"
10*06f32e7eSjoerg 
11*06f32e7eSjoerg #include "llvm/DebugInfo/PDB/IPDBSession.h"
12*06f32e7eSjoerg #include "llvm/DebugInfo/PDB/PDBSymDumper.h"
13*06f32e7eSjoerg 
14*06f32e7eSjoerg #include <utility>
15*06f32e7eSjoerg 
16*06f32e7eSjoerg using namespace llvm;
17*06f32e7eSjoerg using namespace llvm::pdb;
18*06f32e7eSjoerg 
dump(PDBSymDumper & Dumper) const19*06f32e7eSjoerg void PDBSymbolTypePointer::dump(PDBSymDumper &Dumper) const {
20*06f32e7eSjoerg   Dumper.dump(*this);
21*06f32e7eSjoerg }
22*06f32e7eSjoerg 
dumpRight(PDBSymDumper & Dumper) const23*06f32e7eSjoerg void PDBSymbolTypePointer::dumpRight(PDBSymDumper &Dumper) const {
24*06f32e7eSjoerg   Dumper.dumpRight(*this);
25*06f32e7eSjoerg }
26