summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2015-01-19 02:38:16 +0000
committerMichael Gottesman <mgottesman@apple.com>2015-01-19 02:38:16 +0000
commit26500a56f5a01124dca93218c7f4ca957afa3e12 (patch)
treeb61a9354d4f2cdfadded56e49bb0252c2e56c69b
parent4125886b38d042f95bf6abfa354b1fb4db2e9a54 (diff)
downloadbcm5719-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.h6
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;
OpenPOWER on IntegriCloud