From e3548e23657d6c4988f815e9c87350f53e48e783 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Thu, 13 Feb 2020 12:50:54 -0800 Subject: [PATCH] Remove unnecessary typedef that GCC doesn't like --- clang/include/clang/AST/ParentMapContext.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/clang/include/clang/AST/ParentMapContext.h b/clang/include/clang/AST/ParentMapContext.h index 3ab55fb..be4d75d 100644 --- a/clang/include/clang/AST/ParentMapContext.h +++ b/clang/include/clang/AST/ParentMapContext.h @@ -89,8 +89,6 @@ public: /// Container for either a single DynTypedNode or for an ArrayRef to /// DynTypedNode. For use with ParentMap. class DynTypedNodeList { - using DynTypedNode = DynTypedNode; - llvm::AlignedCharArrayUnion> Storage; bool IsSingleNode; -- 1.8.3.1