Skip to content

Commit 03a7c01

Browse files
authored
Update DynamicLibraryManager.cpp
1 parent bdddf8a commit 03a7c01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Interpreter/DynamicLibraryManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ namespace Cpp {
5353
// Behaviour is to not add paths that don't exist...In an interpreted env
5454
// does this make sense? Path could pop into existance at any time.
5555
for (const char* Var : kSysLibraryEnv) {
56-
if (GetEnv(Var)) {
56+
if (const char* GetEnv(Var)) {
5757
SmallVector<StringRef, 10> CurPaths;
5858
SplitPaths(Env, CurPaths, utils::kPruneNonExistant, Cpp::utils::platform::kEnvDelim);
5959
for (const auto& Path : CurPaths)

0 commit comments

Comments
 (0)