Change using => typedef to please the MSVC bots.
authorMichael Gottesman <mgottesman@apple.com>
Mon, 19 Jan 2015 02:38:16 +0000 (02:38 +0000)
committerMichael Gottesman <mgottesman@apple.com>
Mon, 19 Jan 2015 02:38:16 +0000 (02:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226425 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/TinyPtrVector.h

index 58590f49dfe4d4e043f9fb4209aae408a440fdfe..bb31540c508b80372f629ae7c3bae8930af75392 100644 (file)
@@ -25,9 +25,9 @@ namespace llvm {
 template <typename EltTy>
 class TinyPtrVector {
 public:
-  using VecTy = llvm::SmallVector<EltTy, 4>;
-  using value_type = typename VecTy::value_type;
-  using PtrUnion = llvm::PointerUnion<EltTy, VecTy *>;
+  typedef llvm::SmallVector<EltTy, 4> VecTy;
+  typedef typename VecTy::value_type value_type;
+  typedef llvm::PointerUnion<EltTy, VecTy *> PtrUnion;
 
 private:
   PtrUnion Val;