mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 07:20:55 +01:00
ircd::json: Minor conflict fix.
This commit is contained in:
parent
15b67799b3
commit
638f5469c5
1 changed files with 1 additions and 2 deletions
|
@ -51,7 +51,6 @@ namespace ircd::json
|
|||
using karma::double_;
|
||||
using karma::bool_;
|
||||
using karma::maxwidth;
|
||||
using karma::buffer;
|
||||
using karma::eps;
|
||||
using karma::attr_cast;
|
||||
|
||||
|
@ -716,7 +715,7 @@ ircd::json::array::stringify(mutable_buffer &buf,
|
|||
{
|
||||
[](mutable_buffer &buf, const string_view &element)
|
||||
{
|
||||
if(!consume(buf, buffer::copy(buf, element)))
|
||||
if(!consume(buf, ircd::buffer::copy(buf, element)))
|
||||
throw print_error("The JSON generator ran out of space in supplied buffer");
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue