From 2948ec5ca98f8593584f2117bc92fe8d75f6f098 Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Tue, 14 Jan 2020 15:46:13 +0100 Subject: Removed PointerUnion3 and PointerUnion4 aliases in favor of the variadic template --- clang/lib/AST/ASTContext.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'clang/lib') diff --git a/clang/lib/AST/ASTContext.cpp b/clang/lib/AST/ASTContext.cpp index 481affafc87..26e76d45042 100644 --- a/clang/lib/AST/ASTContext.cpp +++ b/clang/lib/AST/ASTContext.cpp @@ -924,15 +924,15 @@ class ASTContext::ParentMap { /// only storing a unique pointer to them. using ParentMapPointers = llvm::DenseMap< const void *, - llvm::PointerUnion4>; + llvm::PointerUnion>; /// Parent map for nodes without pointer identity. We store a full /// DynTypedNode for all keys. using ParentMapOtherNodes = llvm::DenseMap< ast_type_traits::DynTypedNode, - llvm::PointerUnion4>; + llvm::PointerUnion>; ParentMapPointers PointerParents; ParentMapOtherNodes OtherParents; -- cgit v1.2.3