Skip to content

Commit d23b62b

Browse files
authored
Fix WindowsColon issue
1 parent 67dd0e6 commit d23b62b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Interpreter/Paths.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ bool SplitPaths(llvm::StringRef PathStr,
354354

355355
#if defined(_WIN32)
356356
// Support using a ':' delimiter on Windows.
357-
const bool WindowsColon = Delim.equals(":");
357+
const bool WindowsColon = (Delim == ":");
358358
#endif
359359

360360
bool AllExisted = true;

0 commit comments

Comments
 (0)