| 3931 | } |
| 3932 | |
| 3933 | bool Value::hasComment(CommentPlacement placement) const { |
| 3934 | return comments_ != 0 && comments_[placement].comment_ != 0; |
| 3935 | } |
| 3936 | |
| 3937 | JSONCPP_STRING Value::getComment(CommentPlacement placement) const { |
| 3938 | if (hasComment(placement)) |
no outgoing calls
no test coverage detected