mirror of
https://github.com/nlohmann/json.git
synced 2025-07-29 23:01:16 +03:00
more on #48: allowing non-std begin/end functions
This commit is contained in:
@ -411,7 +411,9 @@ class basic_json
|
|||||||
{
|
{
|
||||||
Allocator<object_t> alloc;
|
Allocator<object_t> alloc;
|
||||||
m_value.object = alloc.allocate(1);
|
m_value.object = alloc.allocate(1);
|
||||||
alloc.construct(m_value.object, std::begin(value), std::end(value));
|
using std::begin;
|
||||||
|
using std::end;
|
||||||
|
alloc.construct(m_value.object, begin(value), end(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// create an array (explicit)
|
/// create an array (explicit)
|
||||||
@ -439,7 +441,9 @@ class basic_json
|
|||||||
{
|
{
|
||||||
Allocator<array_t> alloc;
|
Allocator<array_t> alloc;
|
||||||
m_value.array = alloc.allocate(1);
|
m_value.array = alloc.allocate(1);
|
||||||
alloc.construct(m_value.array, std::begin(value), std::end(value));
|
using std::begin;
|
||||||
|
using std::end;
|
||||||
|
alloc.construct(m_value.array, begin(value), end(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// create a string (explicit)
|
/// create a string (explicit)
|
||||||
|
@ -411,7 +411,9 @@ class basic_json
|
|||||||
{
|
{
|
||||||
Allocator<object_t> alloc;
|
Allocator<object_t> alloc;
|
||||||
m_value.object = alloc.allocate(1);
|
m_value.object = alloc.allocate(1);
|
||||||
alloc.construct(m_value.object, std::begin(value), std::end(value));
|
using std::begin;
|
||||||
|
using std::end;
|
||||||
|
alloc.construct(m_value.object, begin(value), end(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// create an array (explicit)
|
/// create an array (explicit)
|
||||||
@ -439,7 +441,9 @@ class basic_json
|
|||||||
{
|
{
|
||||||
Allocator<array_t> alloc;
|
Allocator<array_t> alloc;
|
||||||
m_value.array = alloc.allocate(1);
|
m_value.array = alloc.allocate(1);
|
||||||
alloc.construct(m_value.array, std::begin(value), std::end(value));
|
using std::begin;
|
||||||
|
using std::end;
|
||||||
|
alloc.construct(m_value.array, begin(value), end(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// create a string (explicit)
|
/// create a string (explicit)
|
||||||
|
Reference in New Issue
Block a user