d7a8a638c23bdddde0e1bc4d90ba87f0c488dc71
[oota-llvm.git] / lib / DebugInfo / PDB / PDBSymbolTypePointer.cpp
1 //===- PDBSymbolTypePointer.cpp - --------------------------------*- C++
2 //-*-===//
3 //
4 //                     The LLVM Compiler Infrastructure
5 //
6 // This file is distributed under the University of Illinois Open Source
7 // License. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
10
11 #include <utility>
12
13 #include "llvm/DebugInfo/PDB/PDBSymbol.h"
14 #include "llvm/DebugInfo/PDB/PDBSymbolTypePointer.h"
15
16 using namespace llvm;
17
18 PDBSymbolTypePointer::PDBSymbolTypePointer(
19     std::unique_ptr<IPDBRawSymbol> Symbol)
20     : PDBSymbol(std::move(Symbol)) {}
21
22 void PDBSymbolTypePointer::dump(llvm::raw_ostream &OS) const {}