diff options
| author | Dmitri Gribenko <gribozavr@gmail.com> | 2020-01-14 15:46:13 +0100 |
|---|---|---|
| committer | Dmitri Gribenko <gribozavr@gmail.com> | 2020-01-14 18:56:29 +0100 |
| commit | 2948ec5ca98f8593584f2117bc92fe8d75f6f098 (patch) | |
| tree | 417b18aa594f1db005b57eca3c27eb9ca0517427 /llvm/unittests/ADT/PointerUnionTest.cpp | |
| parent | 0877843ddacca0bea049b65d8a328e5038c72b66 (diff) | |
| download | bcm5719-llvm-2948ec5ca98f8593584f2117bc92fe8d75f6f098.tar.gz bcm5719-llvm-2948ec5ca98f8593584f2117bc92fe8d75f6f098.zip | |
Removed PointerUnion3 and PointerUnion4 aliases in favor of the variadic template
Diffstat (limited to 'llvm/unittests/ADT/PointerUnionTest.cpp')
| -rw-r--r-- | llvm/unittests/ADT/PointerUnionTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/unittests/ADT/PointerUnionTest.cpp b/llvm/unittests/ADT/PointerUnionTest.cpp index 0a88114ede8..3c709baf385 100644 --- a/llvm/unittests/ADT/PointerUnionTest.cpp +++ b/llvm/unittests/ADT/PointerUnionTest.cpp @@ -13,8 +13,8 @@ using namespace llvm; namespace { typedef PointerUnion<int *, float *> PU; -typedef PointerUnion3<int *, float *, long long *> PU3; -typedef PointerUnion4<int *, float *, long long *, double *> PU4; +typedef PointerUnion<int *, float *, long long *> PU3; +typedef PointerUnion<int *, float *, long long *, double *> PU4; struct PointerUnionTest : public testing::Test { float f; |

