summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test-Lua.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-Lua.cc b/tests/test-Lua.cc
index bffbfaa..48a87fc 100644
--- a/tests/test-Lua.cc
+++ b/tests/test-Lua.cc
@@ -18,6 +18,7 @@ class ObjectTest {
int someMethod2(int p) { Printer::log(M_DEBUG, "ObjectTest::someMethod2() called on %p.", this); callCount++; return p * 2; }
static void someFunction() { Printer::log(M_DEBUG, "ObjectTest::someFunction() called."); callCount++; }
static void someStatic() { Printer::log(M_DEBUG, "ObjectTest::someStatic() called."); callCount++; }
+ void cleanup() { }
};
enum ObjectTest_methods_t {