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

llvm-svn: 231047
This commit is contained in:
Peter Collingbourne 2015-03-03 01:39:13 +00:00
parent d8b9ab0f6c
commit a2227f309c

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},