summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-12-05 09:32:22 +0100
committerStephan Bergmann <sbergman@redhat.com>2019-12-05 11:28:00 +0100
commitb024d8bcedc93f1f5c60c7f5eeb54d08b751d950 (patch)
treee0d046c5f7ebd3ebd10984d0834cba39731a8538 /vcl
parent44be127235a9cb37361f21c832678daf5efe926d (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.h2
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;