Change using => typedef to please the MSVC bots.

llvm-svn: 226425
This commit is contained in:
Michael Gottesman 2015-01-19 02:38:16 +00:00
parent 4125886b38
commit 26500a56f5
1 changed files with 3 additions and 3 deletions

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;