Skip to content

Commit f431ccc

Browse files
committed
Removing warning.
1 parent d90cbf3 commit f431ccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xorfilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Status XorFilter<ItemType, FingerprintType, HashFamily>::AddAll(
144144

145145
int* alone = new int[arrayLength];
146146
int alonePos = 0;
147-
for (int i = 0; i < arrayLength; i++) {
147+
for (size_t i = 0; i < arrayLength; i++) {
148148
if (t2vals[i].t2count == 1) {
149149
alone[alonePos++] = i;
150150
}

0 commit comments

Comments
 (0)