diff options
author | Neil <nyamatongwe@gmail.com> | 2022-10-19 15:23:02 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-10-19 15:23:02 +1100 |
commit | b8ba34f03cb1808aa47dce0fe06e81d372a9702c (patch) | |
tree | 53da405d165ec56538cb9356d4afca10029b9a3a /src/Editor.h | |
parent | e30c35b1efc7be12ea10d02028b11bf4eb6e2cea (diff) | |
download | scintilla-mirror-b8ba34f03cb1808aa47dce0fe06e81d372a9702c.tar.gz |
Fix noexcept warnings from recent changes.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index 507c55414..128abf234 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -599,7 +599,7 @@ protected: // ScintillaBase subclass needs access to much of Editor Sci::Line WrapCount(Sci::Line line); void AddStyledText(const char *buffer, Sci::Position appendLength); Sci::Position GetStyledText(char *buffer, Sci::Position cpMin, Sci::Position cpMax) const noexcept; - Sci::Position GetTextRange(char *buffer, Sci::Position cpMin, Sci::Position cpMax) const noexcept; + Sci::Position GetTextRange(char *buffer, Sci::Position cpMin, Sci::Position cpMax) const; virtual Scintilla::sptr_t DefWndProc(Scintilla::Message iMessage, Scintilla::uptr_t wParam, Scintilla::sptr_t lParam) = 0; bool ValidMargin(Scintilla::uptr_t wParam) const noexcept; |