summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2012-03-06 12:14:51 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-12 15:37:40 +0100
commitedea0e19173d92526b6f5378a6182f53d29f45e6 (patch)
tree199f89bd02e069e76881b41d04c8f471371d5434 /tests/auto
parent7738f96f09830f0b21a5834e9af3d4ae8473deab (diff)
tst_exceptionsafety_objects: add virtual ~AbstractTester
GCC complained about undefined behaviour when deleting subclasses of AbstractTester through pointers to AbstractTester, and it's doing so correctly... Change-Id: Ie641281d8aafe32c5c9784e8aa39672ff0b699c7 Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/other/exceptionsafety_objects/tst_exceptionsafety_objects.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/other/exceptionsafety_objects/tst_exceptionsafety_objects.cpp b/tests/auto/other/exceptionsafety_objects/tst_exceptionsafety_objects.cpp
index a426a90976..14628b2c8b 100644
--- a/tests/auto/other/exceptionsafety_objects/tst_exceptionsafety_objects.cpp
+++ b/tests/auto/other/exceptionsafety_objects/tst_exceptionsafety_objects.cpp
@@ -94,6 +94,7 @@ void tst_ExceptionSafety_Objects::initTestCase()
// helper structs to create an arbitrary widget
struct AbstractTester
{
+ virtual ~AbstractTester() {}
virtual void operator()(QObject *parent) = 0;
};
Q_DECLARE_METATYPE(AbstractTester *)