| 1434 | } |
| 1435 | |
| 1436 | bool Value::hasComment(CommentPlacement placement) const { |
| 1437 | return comments_ != 0 && comments_[placement].comment_ != 0; |
| 1438 | } |
| 1439 | |
| 1440 | JSONCPP_STRING Value::getComment(CommentPlacement placement) const { |
| 1441 | if (hasComment(placement)) |
no outgoing calls
no test coverage detected