Change using => typedef to please the MSVC bots.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226425 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Michael Gottesman 2015-01-19 02:38:16 +00:00
parent b0b28ca485
commit 75dd736002

View 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;