BList: Slight code and parameter name cleanup.

* Clarify the fResizeThreshold logic and remove the comment.

 * Rename "count" constructor argument to "blockSize", as this is
   what it actually does.

No functional change intended.

Change-Id: I993bf0e695f47da181e9fb50b9a964edfd4a0adc
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8629
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
Augustin Cavalier
2024-12-06 19:52:05 +00:00
committed by waddlesplash
parent ddd374f0fe
commit 79ebd4147e
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
class BList {
public:
BList(int32 count = 20);
BList(int32 blockSize = 20);
BList(const BList& other);
virtual ~BList();