name may be absolute or relative
| 13 | { |
| 14 | // name may be absolute or relative |
| 15 | inline std::string rootPath(const std::string& name) { |
| 16 | return GlobalFileSystem().findRoot( |
| 17 | path_is_absolute(name.c_str()) ? name : GlobalFileSystem().findFile(name) |
| 18 | ); |
| 19 | } |
| 20 | } // namespace |
| 21 | |
| 22 | class NullModelLoader; |
no test coverage detected