Add explicit type to empty std::set initializer to fix the libc++ build.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231047 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Peter Collingbourne 2015-03-03 01:39:13 +00:00
parent 14593eb417
commit 7abe807c7a

View File

@ -22,7 +22,7 @@ TEST(LowerBitSets, BitSetBuilder) {
bool IsSingleOffset;
bool IsAllOnes;
} BSBTests[] = {
{{}, {}, 0, 1, 0, false, false},
{{}, std::set<uint64_t>{}, 0, 1, 0, false, false},
{{0}, {0}, 0, 1, 0, true, true},
{{4}, {0}, 4, 1, 0, true, true},
{{37}, {0}, 37, 1, 0, true, true},