| 3903 | } |
| 3904 | |
| 3905 | bool Value::hasComment(CommentPlacement placement) const { |
| 3906 | return comments_ != 0 && comments_[placement].comment_ != 0; |
| 3907 | } |
| 3908 | |
| 3909 | JSONCPP_STRING Value::getComment(CommentPlacement placement) const { |
| 3910 | if (hasComment(placement)) |
no outgoing calls
no test coverage detected