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:
parent
d3493e5901
commit
c189feb87b
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue