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 | b44cf0399ce972ce3421576d65a716aa5c748860 (patch) | |
tree | 64cb69ead003c62c21b375a1043e0f54eca643be /src/CellBuffer.cxx | |
parent | 55941c2495e7059812a4c75be8db5dfc37f18a02 (diff) | |
download | scintilla-mirror-b44cf0399ce972ce3421576d65a716aa5c748860.tar.gz |
Remove potential allocation in destructor which could have thrown.
Diffstat (limited to 'src/CellBuffer.cxx')
-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 357d37994..d9710347d 100644 --- a/src/CellBuffer.cxx +++ b/src/CellBuffer.cxx @@ -54,7 +54,6 @@ public: Init(); } ~LineVector() override { - starts.DeleteAll(); } void Init() override { starts.DeleteAll(); |