| 933 | |
| 934 | |
| 935 | void Preprocessor::AddSearchPath(std::string path) { |
| 936 | if (path.back() != '/') |
| 937 | path += "/"; |
| 938 | if (path[0] != '/') |
| 939 | path = "./" + path; |
| 940 | searchPaths_.push_front(path); |
| 941 | } |
| 942 | } |
nothing calls this directly
no outgoing calls
no test coverage detected