1243730Srwatson//===- PDBSymbolTypePointer.cpp -----------------------------------*- C++ -===//
2243730Srwatson//
3243730Srwatson// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4243730Srwatson// See https://llvm.org/LICENSE.txt for license information.
5243730Srwatson// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6243730Srwatson//
7243730Srwatson//===----------------------------------------------------------------------===//
8243730Srwatson
9243730Srwatson#include "llvm/DebugInfo/PDB/PDBSymbolTypePointer.h"
10243730Srwatson
11243730Srwatson#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
12243730Srwatson
13243730Srwatsonusing namespace llvm;
14243730Srwatsonusing namespace llvm::pdb;
15243730Srwatson
16243730Srwatsonvoid PDBSymbolTypePointer::dump(PDBSymDumper &Dumper) const {
17243730Srwatson  Dumper.dump(*this);
18243730Srwatson}
19243730Srwatson
20243730Srwatsonvoid PDBSymbolTypePointer::dumpRight(PDBSymDumper &Dumper) const {
21243730Srwatson  Dumper.dumpRight(*this);
22243730Srwatson}
23243730Srwatson