aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Platform.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-03-18 23:31:59 +1100
committerNeil <nyamatongwe@gmail.com>2021-03-18 23:31:59 +1100
commitb047c81396af14e5497d969b37b1df9d67d09d17 (patch)
tree4b7eab66346c57d36314e3fd7566a610c2dfc66e /src/Platform.h
parent088336e91cb2771acd435bcd4646373420f62484 (diff)
downloadscintilla-mirror-b047c81396af14e5497d969b37b1df9d67d09d17.tar.gz
Make Surface::Release and callers (where possible) noexcept.
Diffstat (limited to 'src/Platform.h')
-rw-r--r--src/Platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Platform.h b/src/Platform.h
index 0c0f37ff6..46c3faf5b 100644
--- a/src/Platform.h
+++ b/src/Platform.h
@@ -174,7 +174,7 @@ public:
virtual void Init(SurfaceID sid, WindowID wid)=0;
virtual void InitPixMap(int width, int height, Surface *surface_, WindowID wid)=0;
- virtual void Release()=0;
+ virtual void Release() noexcept=0;
virtual bool Initialised()=0;
virtual void PenColour(ColourDesired fore)=0;
virtual int LogPixelsY()=0;