PDBSymbolBlock.cpp revision 355940
189099Sfjoe//===- PDBSymbolBlock.cpp - -------------------------------------*- C++ -*-===//
289099Sfjoe//
389099Sfjoe// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
489099Sfjoe// See https://llvm.org/LICENSE.txt for license information.
589099Sfjoe// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
689099Sfjoe//
7220470Suqs//===----------------------------------------------------------------------===//
889099Sfjoe
989244Smsmith#include "llvm/DebugInfo/PDB/PDBSymbolBlock.h"
1089244Smsmith
1189244Smsmith#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
1289244Smsmith#include "llvm/DebugInfo/PDB/PDBSymbol.h"
1389244Smsmith
1489244Smsmith#include <utility>
1589244Smsmith
1689244Smsmithusing namespace llvm;
1789244Smsmithusing namespace llvm::pdb;
1889244Smsmith
19151350Syarvoid PDBSymbolBlock::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); }
20155433Syar