0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 05:08:59 +02:00

modules/vm: Fix #ifdef RB_DEBUG coverage; minor adjust type.

This commit is contained in:
Jason Volk 2019-03-25 20:17:49 -07:00
parent 257b1fa7ff
commit 939812f6bd
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ namespace ircd::m::vm::sequence
extern uint64_t retired; // already written; always monotonic
extern uint64_t committed; // pending write; usually monotonic
extern uint64_t uncommitted; // evaluating; not monotonic
static uint pending;
static size_t pending;
const uint64_t &get(const eval &);
uint64_t get(id::event::buf &); // [GET]

View file

@ -934,7 +934,6 @@ ircd::m::vm::write_commit(eval &eval)
#ifdef RB_DEBUG
const auto db_seq_after(db::sequence(*m::dbs::events));
#endif
log::debug
{
@ -947,4 +946,5 @@ ircd::m::vm::write_commit(eval &eval)
txn.size(),
txn.bytes()
};
#endif
}