0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-28 19:58:53 +02:00

ircd::db: Allow default empty index for cell ctor.

This commit is contained in:
Jason Volk 2019-01-15 18:43:37 -08:00
parent 4b88fcd157
commit 1e7325eb40

View file

@ -81,7 +81,7 @@ struct ircd::db::cell
cell(column, std::unique_ptr<rocksdb::Iterator>, const gopts & = {});
cell(column, const string_view &index, std::unique_ptr<rocksdb::Iterator>, const gopts & = {});
cell(column, const string_view &index, const gopts & = {});
cell(column, const string_view &index = {}, const gopts & = {});
cell(database &, const string_view &column, const string_view &index, const gopts & = {});
cell(database &, const string_view &column, const gopts & = {});
cell();