| 217 | } |
| 218 | |
| 219 | std::string Function::toString() const |
| 220 | { |
| 221 | std::stringstream ss; |
| 222 | ss << *this; |
| 223 | return ss.str(); |
| 224 | } |
| 225 | |
| 226 | std::ostream& operator<<(std::ostream& os, const Function& f) |
| 227 | { |
nothing calls this directly
no outgoing calls
no test coverage detected