We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b3c566 commit 511f501Copy full SHA for 511f501
lib/Common/DataStructures/SparseBitVector.h
@@ -36,10 +36,10 @@ typedef BVUnit64 SparseBVUnit;
36
#define FOREACH_BITSET_IN_SPARSEBV_EDITING(index, bv) \
37
{ \
38
BVIndex index; \
39
- BVSparseNode * _curNodeEdit = (bv)->head; \
+ auto * _curNodeEdit = (bv)->head; \
40
while (_curNodeEdit != nullptr) \
41
42
- BVSparseNode * _next = _curNodeEdit->next; \
+ auto * _next = _curNodeEdit->next; \
43
BVIndex _offset; \
44
BVIndex _startIndex = _curNodeEdit->startIndex; \
45
SparseBVUnit _unit = _curNodeEdit->data; \
0 commit comments