| 1438 | } |
| 1439 | |
| 1440 | JSONCPP_STRING Value::getComment(CommentPlacement placement) const { |
| 1441 | if (hasComment(placement)) |
| 1442 | return comments_[placement].comment_; |
| 1443 | return ""; |
| 1444 | } |
| 1445 | |
| 1446 | void Value::setOffsetStart(ptrdiff_t start) { start_ = start; } |
| 1447 |
no outgoing calls
no test coverage detected