diff options
author | Zachary Turner <zturner@google.com> | 2015-02-08 00:29:29 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-02-08 00:29:29 +0000 |
commit | 21473f7bb613dd8e0fae47a5fb065e3d9a0da543 (patch) | |
tree | 6d66dac477be98ae8995405ff224116d4e05e60c /llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp | |
parent | e169c57188b3d560c3a4cd843e8e87a80cbf3b1f (diff) | |
download | bcm5719-llvm-21473f7bb613dd8e0fae47a5fb065e3d9a0da543.tar.gz bcm5719-llvm-21473f7bb613dd8e0fae47a5fb065e3d9a0da543.zip |
Some cleanup for libpdb.
This patch implements a few of the optional suggestions from the
initial patch comitting libpdb. In particular, it implements a
virtual function out of line for each of the concrete classes.
A few other minor cleanups exist as well, such as using override
instead of virtual, etc.
llvm-svn: 228516
Diffstat (limited to 'llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp b/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp new file mode 100644 index 00000000000..03e60c1d1e5 --- /dev/null +++ b/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp @@ -0,0 +1,21 @@ +//===- PDBSymbolFuncDebugEnd.cpp - ------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include <utility> + +#include "llvm/DebugInfo/PDB/PDBSymbol.h" +#include "llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h" + +using namespace llvm; + +PDBSymbolFuncDebugEnd::PDBSymbolFuncDebugEnd( + std::unique_ptr<IPDBRawSymbol> Symbol) + : PDBSymbol(std::move(Symbol)) {} + +void PDBSymbolFuncDebugEnd::dump(llvm::raw_ostream &OS) const {} |