diff options
| author | Neil <nyamatongwe@gmail.com> | 2020-06-11 10:08:29 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2020-06-11 10:08:29 +1000 |
| commit | 877def4f243e1ef5eb39a6132f3969844e00be95 (patch) | |
| tree | 5041a5f52f7d38c026d594f53d3fabc813205221 /src/Decoration.h | |
| parent | c8136baf0e923ea16cb5e75d75539ca61129925a (diff) | |
| download | scintilla-mirror-877def4f243e1ef5eb39a6132f3969844e00be95.tar.gz | |
Backport: Use noexcept where safe and maintainable.
Backport of changeset 8300:266c8247814e.
Diffstat (limited to 'src/Decoration.h')
| -rw-r--r-- | src/Decoration.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Decoration.h b/src/Decoration.h index 923b0ce15..bab8e2500 100644 --- a/src/Decoration.h +++ b/src/Decoration.h @@ -46,8 +46,8 @@ public: virtual Sci::Position Start(int indicator, Sci::Position position) noexcept = 0; virtual Sci::Position End(int indicator, Sci::Position position) noexcept = 0; - virtual bool ClickNotified() const = 0; - virtual void SetClickNotified(bool notified) = 0; + virtual bool ClickNotified() const noexcept = 0; + virtual void SetClickNotified(bool notified) noexcept = 0; }; std::unique_ptr<IDecoration> DecorationCreate(bool largeDocument, int indicator); |
