aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/oddbool.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libsample/oddbool.h')
-rw-r--r--tests/libsample/oddbool.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/libsample/oddbool.h b/tests/libsample/oddbool.h
index 60cf6a37d..47f0edb9e 100644
--- a/tests/libsample/oddbool.h
+++ b/tests/libsample/oddbool.h
@@ -60,7 +60,8 @@ inline bool operator!=(OddBool b1, OddBool b2) { return !b1 != !b2; }
class LIBSAMPLE_API OddBoolUser
{
public:
- OddBoolUser() : m_oddbool(OddBool(false)) {};
+ OddBoolUser() : m_oddbool(OddBool(false)) {}
+ virtual ~OddBoolUser() {}
OddBool oddBool() { return m_oddbool; }
void setOddBool(OddBool oddBool) { m_oddbool = oddBool; }