From 4b9ff3cd42be427e478743648e9951bf8c189a04 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 24 Jun 2021 15:56:58 +1000 Subject: Cleanup: comment blocks, trailing space in comments --- source/blender/blenlib/BLI_vector.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib/BLI_vector.hh') diff --git a/source/blender/blenlib/BLI_vector.hh b/source/blender/blenlib/BLI_vector.hh index f6f546c90b9..0e878d549c1 100644 --- a/source/blender/blenlib/BLI_vector.hh +++ b/source/blender/blenlib/BLI_vector.hh @@ -963,7 +963,7 @@ class Vector { } /* At least double the size of the previous allocation. Otherwise consecutive calls to grow can - * cause a reallocation every time even though min_capacity only increments. */ + * cause a reallocation every time even though min_capacity only increments. */ const int64_t min_new_capacity = this->capacity() * 2; const int64_t new_capacity = std::max(min_capacity, min_new_capacity); -- cgit v1.2.3