0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-04-30 05:20:43 +02:00

ircd::db: Comment to clarify txn iface.

This commit is contained in:
Jason Volk 2018-09-26 15:28:36 -07:00
parent 6b63d2e5af
commit 45c215eb8d

View file

@ -55,8 +55,8 @@ struct ircd::db::txn
bool has(const op &, const string_view &col) const;
bool has(const op &) const;
size_t bytes() const;
size_t size() const;
size_t bytes() const; // size of data in txn.
size_t size() const; // count of updates in txn.
// commit
void operator()(database &, const sopts & = {});