diff options
author | Neil <nyamatongwe@gmail.com> | 2018-04-19 09:22:21 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-04-19 09:22:21 +1000 |
commit | 880190cf9e175aca93270051365095bfb060cffe (patch) | |
tree | 51672207fd9836bfab60adce0fb8a510959b8803 /src | |
parent | 26d93decbcd4eb304cebdbe6d1686e75205843be (diff) | |
download | scintilla-mirror-880190cf9e175aca93270051365095bfb060cffe.tar.gz |
Backport: Remove potential allocation in destructor which could have thrown.
Backport of changeset 6703:4089e5fd5385.
Diffstat (limited to 'src')
-rw-r--r-- | src/CellBuffer.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/CellBuffer.cxx b/src/CellBuffer.cxx index 777cfe100..7a2d11525 100644 --- a/src/CellBuffer.cxx +++ b/src/CellBuffer.cxx @@ -54,7 +54,6 @@ public: Init(); } ~LineVector() override { - starts.DeleteAll(); } void Init() override { starts.DeleteAll(); |