File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -240,9 +240,9 @@ class ClusteredBitVector {
240
240
}
241
241
242
242
ClusteredBitVector &operator =(const ClusteredBitVector &other) {
243
- // Do something with our current out-of-line capacity .
243
+ // Do something with our current out-of-line storage .
244
244
if (hasOutOfLineData ()) {
245
- // Copy into our current capacity if it's adequate.
245
+ // Copy into our current storage if its capacity is adequate.
246
246
auto otherLengthInChunks = other.getLengthInChunks ();
247
247
if (otherLengthInChunks <= getOutOfLineCapacityInChunks ()) {
248
248
LengthInBits = other.LengthInBits ;
@@ -256,7 +256,7 @@ class ClusteredBitVector {
256
256
return *this ;
257
257
}
258
258
259
- // Otherwise, destroy our current capacity .
259
+ // Otherwise, destroy our current storage .
260
260
destroy ();
261
261
}
262
262
@@ -271,7 +271,7 @@ class ClusteredBitVector {
271
271
}
272
272
273
273
ClusteredBitVector &operator =(ClusteredBitVector &&other) {
274
- // Just drop our current capacity .
274
+ // Just drop our current out-of-line storage .
275
275
if (hasOutOfLineData ()) {
276
276
destroy ();
277
277
}
You can’t perform that action at this time.
0 commit comments