summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-pdbutil/InputFile.h
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2020-01-14 15:46:13 +0100
committerDmitri Gribenko <gribozavr@gmail.com>2020-01-14 18:56:29 +0100
commit2948ec5ca98f8593584f2117bc92fe8d75f6f098 (patch)
tree417b18aa594f1db005b57eca3c27eb9ca0517427 /llvm/tools/llvm-pdbutil/InputFile.h
parent0877843ddacca0bea049b65d8a328e5038c72b66 (diff)
downloadbcm5719-llvm-2948ec5ca98f8593584f2117bc92fe8d75f6f098.tar.gz
bcm5719-llvm-2948ec5ca98f8593584f2117bc92fe8d75f6f098.zip
Removed PointerUnion3 and PointerUnion4 aliases in favor of the variadic template
Diffstat (limited to 'llvm/tools/llvm-pdbutil/InputFile.h')
-rw-r--r--llvm/tools/llvm-pdbutil/InputFile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-pdbutil/InputFile.h b/llvm/tools/llvm-pdbutil/InputFile.h
index f25390c971d..a5d2897f560 100644
--- a/llvm/tools/llvm-pdbutil/InputFile.h
+++ b/llvm/tools/llvm-pdbutil/InputFile.h
@@ -43,7 +43,7 @@ class InputFile {
std::unique_ptr<NativeSession> PdbSession;
object::OwningBinary<object::Binary> CoffObject;
std::unique_ptr<MemoryBuffer> UnknownFile;
- PointerUnion3<PDBFile *, object::COFFObjectFile *, MemoryBuffer *> PdbOrObj;
+ PointerUnion<PDBFile *, object::COFFObjectFile *, MemoryBuffer *> PdbOrObj;
using TypeCollectionPtr = std::unique_ptr<codeview::LazyRandomTypeCollection>;
OpenPOWER on IntegriCloud