From fdadd57f6fdf12a566afb5b549d3c92874004bc6 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sat, 19 May 2018 21:20:13 -0700 Subject: [PATCH] ircd::db: Fix row from tuple template. --- include/ircd/db/row.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ircd/db/row.h b/include/ircd/db/row.h index 60006c05d..c4cfa76c8 100644 --- a/include/ircd/db/row.h +++ b/include/ircd/db/row.h @@ -111,7 +111,7 @@ ircd::db::row::row(database &d, :row{[&d, &key, &t, &buf, &opts] () -> row { - static const typename json::tuple::keys cols; + static const json::keys> cols; return { d, key, cols, buf, opts }; }()} {