0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-26 08:42:34 +01:00

fixup! ircd::db: Various improvements to DB subsystem.

This commit is contained in:
Jason Volk 2017-08-23 14:41:21 -06:00
parent b16dc9598a
commit f1111b2695

View file

@ -109,12 +109,19 @@ void log_rdb_perf_context(const bool &all = true);
#include "db/column.h" #include "db/column.h"
#include "db/cell.h" #include "db/cell.h"
#include "db/row.h" #include "db/row.h"
#include "db/object.h"
namespace ircd { namespace ircd {
namespace db { namespace db {
std::string merge_operator(const string_view &, const std::pair<string_view, string_view> &); std::string merge_operator(const string_view &, const std::pair<string_view, string_view> &);
struct init
{
init();
~init() noexcept;
};
} // namespace db } // namespace db
} // namespace ircd } // namespace ircd