From d2d1fedc77dedb32c49b2f110f661274877123b5 Mon Sep 17 00:00:00 2001 From: Guillaume Chatelet Date: Wed, 31 Jul 2019 10:00:48 +0000 Subject: [PATCH] Fix mismatching vector type in AlignmentTest.cpp git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@367404 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Support/AlignmentTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/Support/AlignmentTest.cpp b/unittests/Support/AlignmentTest.cpp index 1b88501024a..9ae999200ef 100644 --- a/unittests/Support/AlignmentTest.cpp +++ b/unittests/Support/AlignmentTest.cpp @@ -188,7 +188,7 @@ TEST(Alignment, isAligned) { } TEST(Alignment, AlignComparisons) { - std::vector ValidAlignments = getValidAlignments(); + std::vector ValidAlignments = getValidAlignments(); std::sort(ValidAlignments.begin(), ValidAlignments.end()); for (size_t I = 1; I < ValidAlignments.size(); ++I) { assert(I >= 1); -- 2.11.4.GIT