We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdddf8a commit 03a7c01Copy full SHA for 03a7c01
lib/Interpreter/DynamicLibraryManager.cpp
@@ -53,7 +53,7 @@ namespace Cpp {
53
// Behaviour is to not add paths that don't exist...In an interpreted env
54
// does this make sense? Path could pop into existance at any time.
55
for (const char* Var : kSysLibraryEnv) {
56
- if (GetEnv(Var)) {
+ if (const char* GetEnv(Var)) {
57
SmallVector<StringRef, 10> CurPaths;
58
SplitPaths(Env, CurPaths, utils::kPruneNonExistant, Cpp::utils::platform::kEnvDelim);
59
for (const auto& Path : CurPaths)
0 commit comments