* Checks whether the given search path is a valid search path * @param sp the search path to check * @return true if the search path is valid */
| 73 | * @return true if the search path is valid |
| 74 | */ |
| 75 | static bool IsValidSearchPath(Searchpath sp) |
| 76 | { |
| 77 | return sp < _searchpaths.size() && !_searchpaths[sp].empty(); |
| 78 | } |
| 79 | |
| 80 | static void FillValidSearchPaths(bool only_local_path) |
| 81 | { |
no test coverage detected