1139823Simp//===- PDBSymbolTypeBuiltin.cpp - ------------------------------*- C++ -*-===//
21541Srgrimes//
31541Srgrimes// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
41541Srgrimes// See https://llvm.org/LICENSE.txt for license information.
51541Srgrimes// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
61541Srgrimes//
71541Srgrimes//===----------------------------------------------------------------------===//
81541Srgrimes
91541Srgrimes#include "llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h"
101541Srgrimes
111541Srgrimes#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
121541Srgrimes
131541Srgrimesusing namespace llvm;
141541Srgrimesusing namespace llvm::pdb;
151541Srgrimes
161541Srgrimesvoid PDBSymbolTypeBuiltin::dump(PDBSymDumper &Dumper) const {
171541Srgrimes  Dumper.dump(*this);
181541Srgrimes}
191541Srgrimes