aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Decoration.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2020-06-11 10:08:29 +1000
committerNeil <nyamatongwe@gmail.com>2020-06-11 10:08:29 +1000
commit877def4f243e1ef5eb39a6132f3969844e00be95 (patch)
tree5041a5f52f7d38c026d594f53d3fabc813205221 /src/Decoration.cxx
parentc8136baf0e923ea16cb5e75d75539ca61129925a (diff)
downloadscintilla-mirror-877def4f243e1ef5eb39a6132f3969844e00be95.tar.gz
Backport: Use noexcept where safe and maintainable.
Backport of changeset 8300:266c8247814e.
Diffstat (limited to 'src/Decoration.cxx')
-rw-r--r--src/Decoration.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Decoration.cxx b/src/Decoration.cxx
index 94ec25463..4bfff2d01 100644
--- a/src/Decoration.cxx
+++ b/src/Decoration.cxx
@@ -112,10 +112,10 @@ public:
Sci::Position Start(int indicator, Sci::Position position) noexcept override;
Sci::Position End(int indicator, Sci::Position position) noexcept override;
- bool ClickNotified() const override {
+ bool ClickNotified() const noexcept override {
return clickNotified;
}
- void SetClickNotified(bool notified) override {
+ void SetClickNotified(bool notified) noexcept override {
clickNotified = notified;
}
};