| 33 | |
| 34 | public: |
| 35 | CppInsightsCommentStmt(std::string_view comment) |
| 36 | : Stmt{NoStmtClass} |
| 37 | , mComment{comment} |
| 38 | { |
| 39 | } |
| 40 | |
| 41 | std::string_view Comment() const { return mComment; } |
| 42 |
nothing calls this directly
no outgoing calls
no test coverage detected