diff options
author | Neil <nyamatongwe@gmail.com> | 2021-03-18 23:31:59 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-03-18 23:31:59 +1100 |
commit | b047c81396af14e5497d969b37b1df9d67d09d17 (patch) | |
tree | 4b7eab66346c57d36314e3fd7566a610c2dfc66e /src/EditView.cxx | |
parent | 088336e91cb2771acd435bcd4646373420f62484 (diff) | |
download | scintilla-mirror-b047c81396af14e5497d969b37b1df9d67d09d17.tar.gz |
Make Surface::Release and callers (where possible) noexcept.
Diffstat (limited to 'src/EditView.cxx')
-rw-r--r-- | src/EditView.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/EditView.cxx b/src/EditView.cxx index 1ec163d27..6ba480123 100644 --- a/src/EditView.cxx +++ b/src/EditView.cxx @@ -251,7 +251,7 @@ void EditView::LinesAddedOrRemoved(Sci::Line lineOfPos, Sci::Line linesAdded) { } } -void EditView::DropGraphics(bool freeObjects) { +void EditView::DropGraphics(bool freeObjects) noexcept { if (freeObjects) { pixmapLine.reset(); pixmapIndentGuide.reset(); |