diff options
author | Zufu Liu <unknown> | 2020-06-15 10:20:23 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2020-06-15 10:20:23 +1000 |
commit | e1421b5feaff77e9a047a53a7859c577616fae2b (patch) | |
tree | 1a8db27899fa617fc7a37c08f56ff2bdd2454453 /win32/PlatWin.h | |
parent | e031d18b0d1c8d07f73e95f0290e6e349d81f6ee (diff) | |
download | scintilla-mirror-e1421b5feaff77e9a047a53a7859c577616fae2b.tar.gz |
Use ReleaseUnknown to extend noexcept over finalisation.
Diffstat (limited to 'win32/PlatWin.h')
-rw-r--r-- | win32/PlatWin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/PlatWin.h b/win32/PlatWin.h index 0d1c99b48..eb4bfb556 100644 --- a/win32/PlatWin.h +++ b/win32/PlatWin.h @@ -16,7 +16,7 @@ namespace Scintilla { extern void Platform_Initialise(void *hInstance) noexcept; -extern void Platform_Finalise(bool fromDllMain); +extern void Platform_Finalise(bool fromDllMain) noexcept; constexpr RECT RectFromPRectangle(PRectangle prc) noexcept { RECT rc = { static_cast<LONG>(prc.left), static_cast<LONG>(prc.top), |