diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-12-05 09:32:22 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-12-05 11:28:00 +0100 |
commit | b024d8bcedc93f1f5c60c7f5eeb54d08b751d950 (patch) | |
tree | e0d046c5f7ebd3ebd10984d0834cba39731a8538 /vcl | |
parent | 44be127235a9cb37361f21c832678daf5efe926d (diff) |
-Werror,-Wmicrosoft-pure-definition (clang-cl)
("function definition with pure-specifier is a Microsoft extension"). Keeping
it pure but implicitly defined (by dropping the "{}" part) would cause
unresolved symbols during linking, so keep it explicitly defined inline but non-
pure (which should be fine as the class still has other pure members).
Change-Id: Ieff73fd5c9010164c202f752605890b78809caa6
Reviewed-on: https://gerrit.libreoffice.org/84507
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/win/salgdi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/win/salgdi.h b/vcl/inc/win/salgdi.h index fc12bc823b93..dced53aecfb0 100644 --- a/vcl/inc/win/salgdi.h +++ b/vcl/inc/win/salgdi.h @@ -150,7 +150,7 @@ public: struct CompatibleDC::Texture { - virtual ~Texture() = 0 {}; + virtual ~Texture() {}; virtual bool isValid() const = 0; virtual int GetWidth() const = 0; virtual int GetHeight() const = 0; |