diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2012-02-09 11:14:39 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2012-02-09 11:14:39 +0100 |
commit | dfa4958ffb3165785149d266af6710762e88ce1e (patch) | |
tree | 28a856ae33535c8d1f531ab91829c4f2b5b755c7 /server | |
parent | f34207f40635b723a216b3218e5fd02d37d129ac (diff) |
Add missing virtual destructor.
Diffstat (limited to 'server')
-rw-r--r-- | server/src/luaoncommit.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/src/luaoncommit.h b/server/src/luaoncommit.h index b64e744..a9883b2 100644 --- a/server/src/luaoncommit.h +++ b/server/src/luaoncommit.h @@ -37,6 +37,7 @@ class LUAOnCommit : public LUAScript { public: LUAOnCommit() {} LUAOnCommit(Transaction &transaction, Commit &commit); + ~LUAOnCommit() {} const char *name() { return "lua on commit"; } }; |