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 @@ -236,9 +236,9 @@ class ClusteredBitVector {
236
236
}
237
237
238
238
ClusteredBitVector &operator =(const ClusteredBitVector &other) {
239
- // Do something with our current out-of-line capacity .
239
+ // Do something with our current out-of-line storage .
240
240
if (hasOutOfLineData ()) {
241
- // Copy into our current capacity if it's adequate.
241
+ // Copy into our current storage if its capacity is adequate.
242
242
auto otherLengthInChunks = other.getLengthInChunks ();
243
243
if (otherLengthInChunks <= getOutOfLineCapacityInChunks ()) {
244
244
LengthInBits = other.LengthInBits ;
@@ -252,7 +252,7 @@ class ClusteredBitVector {
252
252
return *this ;
253
253
}
254
254
255
- // Otherwise, destroy our current capacity .
255
+ // Otherwise, destroy our current storage .
256
256
destroy ();
257
257
}
258
258
@@ -267,7 +267,7 @@ class ClusteredBitVector {
267
267
}
268
268
269
269
ClusteredBitVector &operator =(ClusteredBitVector &&other) {
270
- // Just drop our current capacity .
270
+ // Just drop our current out-of-line storage .
271
271
if (hasOutOfLineData ()) {
272
272
destroy ();
273
273
}
You can’t perform that action at this time.
0 commit comments