1283625Sdim//===- PDBSymbolCompiland.cpp - compiland details --------*- C++ -*-===//
2283625Sdim//
3283625Sdim//                     The LLVM Compiler Infrastructure
4283625Sdim//
5283625Sdim// This file is distributed under the University of Illinois Open Source
6283625Sdim// License. See LICENSE.TXT for details.
7283625Sdim//
8283625Sdim//===----------------------------------------------------------------------===//
9283625Sdim
10283625Sdim#include "llvm/DebugInfo/PDB/PDBSymbolCompiland.h"
11283625Sdim
12283625Sdim#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
13283625Sdim
14283625Sdim#include <utility>
15283625Sdim
16283625Sdimusing namespace llvm;
17283625Sdim
18283625SdimPDBSymbolCompiland::PDBSymbolCompiland(const IPDBSession &PDBSession,
19283625Sdim                                       std::unique_ptr<IPDBRawSymbol> Symbol)
20283625Sdim    : PDBSymbol(PDBSession, std::move(Symbol)) {}
21283625Sdim
22283625Sdimvoid PDBSymbolCompiland::dump(PDBSymDumper &Dumper) const {
23283625Sdim  Dumper.dump(*this);
24283625Sdim}
25