| 466 | } |
| 467 | |
| 468 | std::string FunctionDoc::NamespaceFix(const std::string& s) |
| 469 | { |
| 470 | std::string rc = std::regex_replace(s, std::regex("::"), "."); |
| 471 | rc = std::regex_replace(rc, std::regex("cpplib\\.cpplib\\."), "cpplib."); |
| 472 | return rc; |
| 473 | } |
| 474 | |
| 475 | std::string FunctionDoc::StringCleanAll(std::string& s, const std::string& white_space) |
| 476 | { |
nothing calls this directly
no outgoing calls
no test coverage detected