| 2029 | } |
| 2030 | |
| 2031 | static std::string GetFilePathExtension(const std::string &FileName) { |
| 2032 | if (FileName.find_last_of(".") != std::string::npos) |
| 2033 | return FileName.substr(FileName.find_last_of(".") + 1); |
| 2034 | return ""; |
| 2035 | } |
| 2036 | |
| 2037 | static std::string GetBaseDir(const std::string &filepath) { |
| 2038 | if (filepath.find_last_of("/\\") != std::string::npos) |
no outgoing calls
no test coverage detected