| 3937 | } |
| 3938 | |
| 3939 | JSONCPP_STRING Value::getComment(CommentPlacement placement) const { |
| 3940 | if (hasComment(placement)) |
| 3941 | return comments_[placement].comment_; |
| 3942 | return ""; |
| 3943 | } |
| 3944 | |
| 3945 | void Value::setOffsetStart(ptrdiff_t start) { start_ = start; } |
| 3946 |
no outgoing calls
no test coverage detected