| 5 | #include <string> // std::string |
| 6 | |
| 7 | struct Example |
| 8 | { |
| 9 | std::string name; |
| 10 | std::string description; |
| 11 | }; |
| 12 | |
| 13 | std::ostream& operator<<(std::ostream& os, Example const& example) |
| 14 | { |
nothing calls this directly
no outgoing calls
no test coverage detected