| 110 | } |
| 111 | |
| 112 | std::string Path::Join(const std::string& p1, const std::string& p2) |
| 113 | { |
| 114 | const std::string* paths[] = {&p1, &p2}; |
| 115 | return DoJoin(paths, TOFT_ARRAY_SIZE(paths)); |
| 116 | } |
| 117 | |
| 118 | std::string Path::Join(const std::string& p1, const std::string& p2, |
| 119 | const std::string& p3) |
nothing calls this directly
no outgoing calls
no test coverage detected