cppu/qa/test_unotype.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
New commits: commit f8779bbcef2a2eeab8d74bce445a0eaceda8bdde Author: Stephan Bergmann <sberg...@redhat.com> Date: Mon Jan 18 20:24:40 2016 +0100 Avoid -Werror,-Wdelete-non-virtual-dtor with current Clang trunk Change-Id: I5300cd6ff2c924a4acc01ba7f4478a0db50aa08c diff --git a/cppu/qa/test_unotype.cxx b/cppu/qa/test_unotype.cxx index a0b63fa..0f2beb0 100644 --- a/cppu/qa/test_unotype.cxx +++ b/cppu/qa/test_unotype.cxx @@ -71,7 +71,8 @@ private: // avoid warnings about virtual members and non-virtual dtor public: - static void dummy(DerivedInterface1 * p) { p->~DerivedInterface1(); } + static void dummy(DerivedInterface1 * p) + { p->DerivedInterface1::~DerivedInterface1(); } // ...and avoid warnings about unused ~DerivedInterface1 (see below) }; @@ -81,7 +82,8 @@ private: // avoid warnings about virtual members and non-virtual dtor public: - static void dummy(DerivedInterface2 * p) { p->~DerivedInterface2(); } + static void dummy(DerivedInterface2 * p) + { p->DerivedInterface2::~DerivedInterface2(); } // ...and avoid warnings about unused ~DerivedInterface2 (see below) }; _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits