mirror of
https://github.com/matrix-construct/construct
synced 2025-03-13 21:10:32 +01:00
ircd::json: Fix assign source here.
This commit is contained in:
parent
99e431c8da
commit
87c9ebdbc3
1 changed files with 2 additions and 1 deletions
|
@ -677,7 +677,8 @@ template<class dst,
|
|||
typename std::enable_if
|
||||
<
|
||||
!std::is_base_of<json::string, dst>() &&
|
||||
std::is_convertible<src, dst>(),
|
||||
std::is_convertible<src, dst>() &&
|
||||
!ircd::json::is_tuple<dst>(),
|
||||
void>::type
|
||||
_assign(dst &d,
|
||||
src&& s)
|
||||
|
|
Loading…
Add table
Reference in a new issue