aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Platform.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2022-08-01 16:48:21 +1000
committerNeil <nyamatongwe@gmail.com>2022-08-01 16:48:21 +1000
commit987598c6d853eac0a99bbf97f4fe847874652ed3 (patch)
tree3d639ab2a73389c4b6393a7377475af94f7fdce4 /src/Platform.h
parent6db9764146c11637c6cc3d6749a566f17e6f3429 (diff)
downloadscintilla-mirror-987598c6d853eac0a99bbf97f4fe847874652ed3.tar.gz
Avoid some warnings from Code Analysis.
Diffstat (limited to 'src/Platform.h')
-rw-r--r--src/Platform.h2
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;