diff options
author | Adam <Adam@anope.org> | 2013-07-20 19:46:13 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-07-20 19:46:13 -0400 |
commit | 9629ccb3745ed069ae906b7314638a5a0d9e2fa5 (patch) | |
tree | 7b97db96586f6fb0825fc7aed702753d4d8daed8 /include/modules/redis.h | |
parent | cb70d976ba3b500418264a0d1b891bae6e8216a2 (diff) |
Fix more compile warnings found on newer g++ versions
Diffstat (limited to 'include/modules/redis.h')
-rw-r--r-- | include/modules/redis.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/modules/redis.h b/include/modules/redis.h index d13769d91..4cff88e99 100644 --- a/include/modules/redis.h +++ b/include/modules/redis.h @@ -48,6 +48,7 @@ namespace Redis Module *owner; Interface(Module *m) : owner(m) { } + virtual ~Interface() { } virtual void OnResult(const Reply &r) = 0; virtual void OnError(const Anope::string &error) { Log(owner) << error; } |