| 473 | } |
| 474 | |
| 475 | std::string FunctionDoc::StringCleanAll(std::string& s, const std::string& white_space) |
| 476 | { |
| 477 | std::string rc = StripString(s, white_space); |
| 478 | rc = NamespaceFix(rc); |
| 479 | return rc; |
| 480 | } |
| 481 | |
| 482 | ArgumentDoc FunctionDoc::ParseArgumentToken(const std::string& argument_token) |
| 483 | { |
nothing calls this directly
no outgoing calls
no test coverage detected