Skip to content

Commit 9a700a5

Browse files
committed
fix windows build
1 parent aa3f5f7 commit 9a700a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/veriblock/pop/entities/merkle_tree.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ struct MerkleTree {
2424
MerkleTree(Specific& instance, const std::vector<hash_t>& hashes)
2525
: instance(instance) {
2626
buildTree(hashes);
27-
for (int32_t i = 0, size = hashes.size(); i < size; i++) {
27+
for (int32_t i = 0, size = (int32_t)hashes.size(); i < size; i++) {
2828
hash_indices[hashes[i]] = i;
2929
}
3030
}

0 commit comments

Comments
 (0)