diff options
author | Neil <nyamatongwe@gmail.com> | 2022-08-01 16:48:21 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-08-01 16:48:21 +1000 |
commit | 987598c6d853eac0a99bbf97f4fe847874652ed3 (patch) | |
tree | 3d639ab2a73389c4b6393a7377475af94f7fdce4 /src/Platform.h | |
parent | 6db9764146c11637c6cc3d6749a566f17e6f3429 (diff) | |
download | scintilla-mirror-987598c6d853eac0a99bbf97f4fe847874652ed3.tar.gz |
Avoid some warnings from Code Analysis.
Diffstat (limited to 'src/Platform.h')
-rw-r--r-- | src/Platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Platform.h b/src/Platform.h index ce04d9b22..b0d12888d 100644 --- a/src/Platform.h +++ b/src/Platform.h @@ -319,7 +319,7 @@ struct ListOptions { class ListBox : public Window { public: ListBox() noexcept; - virtual ~ListBox() noexcept override; + ~ListBox() noexcept override; static std::unique_ptr<ListBox> Allocate(); virtual void SetFont(const Font *font)=0; |