0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-02 13:48:53 +02:00

ircd::json: Fix member construction related.

This commit is contained in:
Jason Volk 2017-10-15 21:21:16 -07:00
parent 08b961351d
commit 52e2525b30

View file

@ -69,9 +69,8 @@ struct ircd::json::iov
struct ircd::json::iov::push
:protected ircd::json::iov::node
{
template<class... args>
push(iov &iov, args&&... a)
:node{iov, std::forward<args>(a)...}
push(iov &iov, json::member m)
:node{iov, std::move(m)}
{}
push() = default;