aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-04-05 21:26:15 +1000
committerNeil <nyamatongwe@gmail.com>2021-04-05 21:26:15 +1000
commitc81cf0efc07247f320b649f35500af64ff19ac24 (patch)
tree1c89401c163088db42754a279c8cc0f937e30d5e /cocoa
parent00527a74c676076cad767397a2867a4aa4454a19 (diff)
downloadscintilla-mirror-c81cf0efc07247f320b649f35500af64ff19ac24.tar.gz
More noexcept on Cocoa, GTK, and Qt.
Diffstat (limited to 'cocoa')
-rw-r--r--cocoa/PlatCocoa.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm
index af420c47b..7f26f4bb0 100644
--- a/cocoa/PlatCocoa.mm
+++ b/cocoa/PlatCocoa.mm
@@ -1517,7 +1517,7 @@ std::unique_ptr<Surface> Surface::Allocate(int) {
// be either an NSWindow or NSView and the code will check the type
// before performing an action.
-Window::~Window() {
+Window::~Window() noexcept {
}
// Window::Destroy needs to see definition of ListBoxImpl so is located after ListBoxImpl
@@ -2211,7 +2211,7 @@ void ListBoxImpl::SelectionChange() {
ListBox::ListBox() noexcept {
}
-ListBox::~ListBox() {
+ListBox::~ListBox() noexcept {
}
std::unique_ptr<ListBox> ListBox::Allocate() {