Skip to content

Commit 352a92d

Browse files
committed
format
1 parent 95cc727 commit 352a92d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/VecSim/algorithms/hnsw/hnsw_factory.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ size_t EstimateInitialSize(const HNSWParams *params) {
6363
est += sizeof(size_t) * params->initialCapacity + sizeof(size_t); // element level
6464
est += sizeof(size_t) * params->initialCapacity +
6565
sizeof(size_t); // Labels lookup hash table buckets.
66-
est += sizeof(vecsim_stl::one_byte_mutex) * params->initialCapacity + sizeof(size_t); // lock per vector
66+
est += sizeof(vecsim_stl::one_byte_mutex) * params->initialCapacity +
67+
sizeof(size_t); // lock per vector
6768
}
6869

6970
// Explicit allocation calls - always allocate a header.

0 commit comments

Comments
 (0)