[clangd] fix another ambigous constructor in DexTest

llvm-svn: 343796
This commit is contained in:
Jonas Toth 2018-10-04 16:29:58 +00:00
parent 6ad03ad34b
commit 0451440f89
1 changed files with 3 additions and 3 deletions

View File

@ -317,9 +317,9 @@ TEST(DexIterators, Boost) {
TEST(DexIterators, Optimizations) {
Corpus C{5};
const PostingList L1({1});
const PostingList L2({2});
const PostingList L3({3});
const PostingList L1{1};
const PostingList L2{2};
const PostingList L3{3};
// empty and/or yield true/false
EXPECT_EQ(llvm::to_string(*C.intersect()), "true");