projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0b28ca
)
Change using => typedef to please the MSVC bots.
author
Michael Gottesman
<mgottesman@apple.com>
Mon, 19 Jan 2015 02:38:16 +0000
(
02:38
+0000)
committer
Michael Gottesman
<mgottesman@apple.com>
Mon, 19 Jan 2015 02:38:16 +0000
(
02:38
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226425
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/ADT/TinyPtrVector.h
patch
|
blob
|
history
diff --git
a/include/llvm/ADT/TinyPtrVector.h
b/include/llvm/ADT/TinyPtrVector.h
index 58590f49dfe4d4e043f9fb4209aae408a440fdfe..bb31540c508b80372f629ae7c3bae8930af75392 100644
(file)
--- a/
include/llvm/ADT/TinyPtrVector.h
+++ b/
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;