* Transparent forwarder to tiledb_ctx_alloc. * * Must be a separate function with its own name due to requirements of the * CAPI_INTERFACE macro. */
| 67 | * CAPI_INTERFACE macro. |
| 68 | */ |
| 69 | capi_return_t tiledb_ctx_alloc_with_error( |
| 70 | tiledb_config_handle_t* config, tiledb_ctx_handle_t** ctx) { |
| 71 | return tiledb::api::tiledb_ctx_alloc(config, ctx); |
| 72 | } |
| 73 | |
| 74 | void tiledb_ctx_free(tiledb_ctx_t** ctx) { |
| 75 | ensure_output_pointer_is_valid(ctx); |
no test coverage detected