From f1111b2695c68797e4b927e72839d9f6bf01fe2b Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Wed, 23 Aug 2017 14:41:21 -0600 Subject: [PATCH] fixup! ircd::db: Various improvements to DB subsystem. --- include/ircd/db.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/ircd/db.h b/include/ircd/db.h index d38565126..4d8ac5376 100644 --- a/include/ircd/db.h +++ b/include/ircd/db.h @@ -109,12 +109,19 @@ void log_rdb_perf_context(const bool &all = true); #include "db/column.h" #include "db/cell.h" #include "db/row.h" +#include "db/object.h" namespace ircd { namespace db { std::string merge_operator(const string_view &, const std::pair &); +struct init +{ + init(); + ~init() noexcept; +}; + } // namespace db } // namespace ircd