0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-01 08:18:20 +02:00

ircd::db: Fix row from tuple template.

This commit is contained in:
Jason Volk 2018-05-19 21:20:13 -07:00
parent d30aa971e5
commit fdadd57f6f

View file

@ -111,7 +111,7 @@ ircd::db::row::row(database &d,
:row{[&d, &key, &t, &buf, &opts]
() -> row
{
static const typename json::tuple<T...>::keys cols;
static const json::keys<json::tuple<T...>> cols;
return { d, key, cols, buf, opts };
}()}
{