From a975005246dc972de1e61d866fd4dfe617c89ab2 Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 1 Nov 2019 12:40:13 +1100 Subject: Avoid calling vector::shrink_to_fit in destructors as it is not noexcept. The destructors of the members will ensure that everything is correct. Potential unhandled exceptions reported by Coverity. --- src/CellBuffer.cxx | 1 - 1 file changed, 1 deletion(-) (limited to 'src/CellBuffer.cxx') diff --git a/src/CellBuffer.cxx b/src/CellBuffer.cxx index 815ac3110..80dc02d64 100644 --- a/src/CellBuffer.cxx +++ b/src/CellBuffer.cxx @@ -99,7 +99,6 @@ public: void operator=(const LineStartIndex &) = delete; void operator=(LineStartIndex &&) = delete; virtual ~LineStartIndex() { - starts.DeleteAll(); } bool Allocate(Sci::Line lines) { refCount++; -- cgit v1.2.3