| 1493 | } |
| 1494 | |
| 1495 | bool Value::hasComment(CommentPlacement placement) const { |
| 1496 | return comments_ != nullptr && comments_[placement].comment_ != nullptr; |
| 1497 | } |
| 1498 | |
| 1499 | JSONCPP_STRING Value::getComment(CommentPlacement placement) const { |
| 1500 | if (hasComment(placement)) |
no outgoing calls
no test coverage detected