| 2724 | } |
| 2725 | |
| 2726 | bool Value::hasComment(CommentPlacement placement) const { |
| 2727 | return comments_ != 0 && comments_[placement].comment_ != 0; |
| 2728 | } |
| 2729 | |
| 2730 | std::string Value::getComment(CommentPlacement placement) const { |
| 2731 | if (hasComment(placement)) |
no outgoing calls
no test coverage detected