| 28 | //===----------------------------------------------------------------------===// |
| 29 | |
| 30 | Optional<std::string> Process::FindInEnvPath(StringRef EnvName, |
| 31 | StringRef FileName) { |
| 32 | return FindInEnvPath(EnvName, FileName, {}); |
| 33 | } |
| 34 | |
| 35 | Optional<std::string> Process::FindInEnvPath(StringRef EnvName, |
| 36 | StringRef FileName, |
nothing calls this directly
no test coverage detected