| 407 | } |
| 408 | |
| 409 | json_node* json_node::free_child(json_node* child) |
| 410 | { |
| 411 | if (iter_ == NULL || child == NULL) { |
| 412 | return NULL; |
| 413 | } |
| 414 | |
| 415 | ACL_JSON_NODE* node = acl_json_node_erase(node_me_, iter_); |
| 416 | if (node == NULL) { |
| 417 | return NULL; |
| 418 | } |
| 419 | |
| 420 | json_node* next = dbuf_->create<json_node>(node, json_); |
| 421 | return next; |
| 422 | } |
| 423 | |
| 424 | json_node* json_node::operator[](const char* tag) |
| 425 | { |
nothing calls this directly
no test coverage detected