summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cppu/qa/test_unotype.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/cppu/qa/test_unotype.cxx b/cppu/qa/test_unotype.cxx
index a0b63fa738fe..0f2beb08e305 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)
};