summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/ADT/PointerUnionTest.cpp
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2020-01-14 15:46:13 +0100
committerDmitri Gribenko <gribozavr@gmail.com>2020-01-14 18:56:29 +0100
commit2948ec5ca98f8593584f2117bc92fe8d75f6f098 (patch)
tree417b18aa594f1db005b57eca3c27eb9ca0517427 /llvm/unittests/ADT/PointerUnionTest.cpp
parent0877843ddacca0bea049b65d8a328e5038c72b66 (diff)
downloadbcm5719-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.cpp4
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;
OpenPOWER on IntegriCloud