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

ircd::json: Assignment semantic for json::strung.

This commit is contained in:
Jason Volk 2018-09-05 19:36:52 -07:00
parent d3493e5901
commit c189feb87b

View file

@ -32,6 +32,8 @@ struct ircd::json::strung
template<class... T> strung(T&&... t);
strung(strung &&s) noexcept;
strung(const strung &s);
strung &operator=(strung &&) = default;
strung &operator=(const strung &) = default;
};
inline