| 17 | virtual ~CustomFunction() {} |
| 18 | |
| 19 | static void xDestroy(void* self) { |
| 20 | delete static_cast<CustomFunction*>(self); |
| 21 | } |
| 22 | |
| 23 | static void xFunc(sqlite3_context* invocation, int argc, sqlite3_value** argv) { |
| 24 | FUNCTION_START(); |
nothing calls this directly
no outgoing calls
no test coverage detected