diff options
| author | Neil <nyamatongwe@gmail.com> | 2021-08-31 08:21:38 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2021-08-31 08:21:38 +1000 |
| commit | 17113ca41a020a6c37d3bd859201bf716b3c6b7a (patch) | |
| tree | 28a0ea64abf513def8987bc033040bebdd05b8d7 /src/CallTip.h | |
| parent | 808b30f6d4b7acb5c9b8b649f315e972df5a8cff (diff) | |
| download | scintilla-mirror-17113ca41a020a6c37d3bd859201bf716b3c6b7a.tar.gz | |
Make Cancel methods noexcept as they may need to be used in destructors.
Diffstat (limited to 'src/CallTip.h')
| -rw-r--r-- | src/CallTip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CallTip.h b/src/CallTip.h index f2889d44a..dc1071baa 100644 --- a/src/CallTip.h +++ b/src/CallTip.h @@ -75,7 +75,7 @@ public: Scintilla::CharacterSet characterSet, Scintilla::Technology technology, const char *localeName, const Window &wParent); - void CallTipCancel(); + void CallTipCancel() noexcept; /// Set a range of characters to be displayed in a highlight style. /// Commonly used to highlight the current parameter. |
