MCPcopy Create free account
hub / github.com/asg017/sqlite-vss / delVectorFloat

Function delVectorFloat

src/sqlite-vector.cpp:34–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected