forked from OSchip/llvm-project
Change using => typedef to please the MSVC bots.
llvm-svn: 226425
This commit is contained in:
parent
4125886b38
commit
26500a56f5
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue