From a2931677c6e28aad5ddd56d82e5a8814746dc5fd Mon Sep 17 00:00:00 2001 From: Neil Date: Thu, 11 Jun 2020 10:08:29 +1000 Subject: Use noexcept where safe and maintainable. --- src/Decoration.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Decoration.h') 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 DecorationCreate(bool largeDocument, int indicator); -- cgit v1.2.3