name may be absolute or relative
| 18 | { |
| 19 | // name may be absolute or relative |
| 20 | inline std::string rootPath(const std::string& name) |
| 21 | { |
| 22 | return GlobalFileSystem().findRoot( |
| 23 | path_is_absolute(name.c_str()) ? name : GlobalFileSystem().findFile(name) |
| 24 | ); |
| 25 | } |
| 26 | } // namespace |
| 27 | |
| 28 | const std::string& MD5ModelLoader::getExtension() const |
no test coverage detected