mirror of
https://github.com/nlohmann/json.git
synced 2024-11-23 22:19:02 +08:00
fixed a cppcheck warning
This commit is contained in:
parent
a8f62ca052
commit
81367a9a10
@ -614,8 +614,7 @@ JSON::iterator JSON::find(const char* key) {
|
||||
} else {
|
||||
const object_t::iterator i = _value.object->find(key);
|
||||
if (i != _value.object->end()) {
|
||||
JSON::iterator result;
|
||||
result._object = this;
|
||||
JSON::iterator result(this);
|
||||
result._oi = new object_t::iterator(i);
|
||||
return result;
|
||||
} else {
|
||||
@ -630,8 +629,7 @@ JSON::const_iterator JSON::find(const char* key) const {
|
||||
} else {
|
||||
const object_t::const_iterator i = _value.object->find(key);
|
||||
if (i != _value.object->end()) {
|
||||
JSON::const_iterator result;
|
||||
result._object = this;
|
||||
JSON::const_iterator result(this);
|
||||
result._oi = new object_t::const_iterator(i);
|
||||
return result;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user