aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Partitioning.h
diff options
context:
space:
mode:
authorZufu Liu <unknown>2021-07-15 17:29:24 +1000
committerZufu Liu <unknown>2021-07-15 17:29:24 +1000
commit39be73514c317e7d672e0a09862571e64f8979da (patch)
treebbfb503821368eaa608174af4532f50026e3f723 /src/Partitioning.h
parentf4878568f55a9c3b6eef8cc8fad9b1aa7e8ab4ce (diff)
downloadscintilla-mirror-39be73514c317e7d672e0a09862571e64f8979da.tar.gz
Feature [feature-requests:#1370] Implement SCI_ALLOCATELINES to allocate indices
to hold some number of lines. This is an optimization that can decrease reallocation overhead.
Diffstat (limited to 'src/Partitioning.h')
-rw-r--r--src/Partitioning.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Partitioning.h b/src/Partitioning.h
index cf1bb6a7b..efa6bf95e 100644
--- a/src/Partitioning.h
+++ b/src/Partitioning.h
@@ -110,6 +110,11 @@ public:
return static_cast<T>(body->Length())-1;
}
+ void ReAllocate(ptrdiff_t newSize) {
+ // + 1 accounts for initial element that is always 0.
+ body->ReAllocate(newSize + 1);
+ }
+
T Length() const noexcept {
return PositionFromPartition(Partitions());
}