| 64 | } |
| 65 | |
| 66 | ~CAPIString() { |
| 67 | auto result = tiledb_status(tiledb_string_free(&string_)); |
| 68 | if (result != TILEDB_OK) { |
| 69 | log_warn("Could not free string; Error code: " + std::to_string(result)); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | // Disable copy and move. Because this class owns a resource, |
| 74 | // copying it must not be supported, but moving it could be. |
nothing calls this directly
no test coverage detected