Skip to content

Commit 3a16a9a

Browse files
Address a comment.
1 parent cd87122 commit 3a16a9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/ADT/SparseBitVector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ class SparseBitVector {
799799

800800
unsigned count() const {
801801
unsigned BitCount = 0;
802-
for (const auto &Elem : Elements)
802+
for (const SparseBitVectorElement<ElementSize> &Elem : Elements)
803803
BitCount += Elem.count();
804804
return BitCount;
805805
}

0 commit comments

Comments
 (0)