diff options
| author | Michael Gottesman <mgottesman@apple.com> | 2015-01-19 02:38:16 +0000 |
|---|---|---|
| committer | Michael Gottesman <mgottesman@apple.com> | 2015-01-19 02:38:16 +0000 |
| commit | 26500a56f5a01124dca93218c7f4ca957afa3e12 (patch) | |
| tree | b61a9354d4f2cdfadded56e49bb0252c2e56c69b | |
| parent | 4125886b38d042f95bf6abfa354b1fb4db2e9a54 (diff) | |
| download | bcm5719-llvm-26500a56f5a01124dca93218c7f4ca957afa3e12.tar.gz bcm5719-llvm-26500a56f5a01124dca93218c7f4ca957afa3e12.zip | |
Change using => typedef to please the MSVC bots.
llvm-svn: 226425
| -rw-r--r-- | llvm/include/llvm/ADT/TinyPtrVector.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/ADT/TinyPtrVector.h b/llvm/include/llvm/ADT/TinyPtrVector.h index 58590f49dfe..bb31540c508 100644 --- a/llvm/include/llvm/ADT/TinyPtrVector.h +++ b/llvm/include/llvm/ADT/TinyPtrVector.h @@ -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; |

