diff options
author | Zufu Liu <unknown> | 2021-09-30 14:39:32 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2021-09-30 14:39:32 +1000 |
commit | a4260678cb381e5fc9264b005d9013555e9f2a68 (patch) | |
tree | 145688eeef89e6bc085ac6dfbcb7e34b853ab0c6 /src/PositionCache.h | |
parent | f0d7f6fbc880ed1b5db8fc9fc52bc7cd99d209a6 (diff) | |
download | scintilla-mirror-a4260678cb381e5fc9264b005d9013555e9f2a68.tar.gz |
Feature [feature-requests:#1416] Mark destructor as noexcept and use default
implementation.
Diffstat (limited to 'src/PositionCache.h')
-rw-r--r-- | src/PositionCache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PositionCache.h b/src/PositionCache.h index 79d63ee75..dece77040 100644 --- a/src/PositionCache.h +++ b/src/PositionCache.h @@ -266,7 +266,7 @@ public: BreakFinder(BreakFinder &&) = delete; void operator=(const BreakFinder &) = delete; void operator=(BreakFinder &&) = delete; - ~BreakFinder(); + ~BreakFinder() noexcept; TextSegment Next(); bool More() const noexcept; }; |