| 62 | } |
| 63 | |
| 64 | platform::lmdb::Cur::Cur(Txn &db_txn, Dbi &db_dbi) { |
| 65 | lmdb_check(::mdb_cursor_open(db_txn.handle, db_dbi.handle, &handle), "mdb_cursor_open "); |
| 66 | } |
| 67 | |
| 68 | platform::lmdb::Cur::Cur(Cur &&other) noexcept { std::swap(handle, other.handle); } |
| 69 |
nothing calls this directly
no test coverage detected