Skip to content

Commit

Permalink
Actually enable new test for const RangeAdapter. Missing from r278991
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@279000 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
cooperp committed Aug 17, 2016
1 parent 3a15af3 commit 0f69921
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion unittests/ADT/RangeAdapterTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ TYPED_TEST(RangeAdapterLValueTest, TrivialOperation) {
template <typename T> struct RangeAdapterRValueTest : testing::Test {};

typedef ::testing::Types<std::vector<int>, std::list<int>, ReverseOnlyVector,
BidirectionalVector> RangeAdapterRValueTestTypes;
BidirectionalVector,
BidirectionalVectorConsts> RangeAdapterRValueTestTypes;
TYPED_TEST_CASE(RangeAdapterRValueTest, RangeAdapterRValueTestTypes);

TYPED_TEST(RangeAdapterRValueTest, TrivialOperation) {
Expand Down

0 comments on commit 0f69921

Please sign in to comment.