diff --git a/include/llvm/ADT/TinyPtrVector.h b/include/llvm/ADT/TinyPtrVector.h index 58590f49dfe..bb31540c508 100644 --- a/include/llvm/ADT/TinyPtrVector.h +++ b/include/llvm/ADT/TinyPtrVector.h @@ -25,9 +25,9 @@ namespace llvm { template class TinyPtrVector { public: - using VecTy = llvm::SmallVector; - using value_type = typename VecTy::value_type; - using PtrUnion = llvm::PointerUnion; + typedef llvm::SmallVector VecTy; + typedef typename VecTy::value_type value_type; + typedef llvm::PointerUnion PtrUnion; private: PtrUnion Val;