| 78 | } |
| 79 | |
| 80 | char const* cmCustomCommand::GetComment() const |
| 81 | { |
| 82 | char const* no_comment = nullptr; |
| 83 | return this->HaveComment ? this->Comment.c_str() : no_comment; |
| 84 | } |
| 85 | |
| 86 | void cmCustomCommand::SetComment(char const* comment) |
| 87 | { |
no test coverage detected