| 32 | #pragma region Generic |
| 33 | |
| 34 | void delVectorFloat(void *p) { |
| 35 | |
| 36 | auto vx = static_cast<VectorFloat *>(p); |
| 37 | sqlite3_free(vx->data); |
| 38 | delete vx; |
| 39 | } |
| 40 | |
| 41 | void resultVector(sqlite3_context *context, vector<float> *vecIn) { |
| 42 |
nothing calls this directly
no outgoing calls
no test coverage detected