diff options
author | Douglas Gregor <dgregor@apple.com> | 2013-01-23 22:45:24 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2013-01-23 22:45:24 +0000 |
commit | 5100135ecf29d4246e6bd34318da9eb22c16b86a (patch) | |
tree | b2b524d5e2a29c8729d145318c749a2d41116d51 /lib/Serialization | |
parent | a6b00fc97669aa25d89ae9f202b05dfadfd0e324 (diff) |
Fix for case-sensitive file systems. Ugh
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173303 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Serialization')
-rw-r--r-- | lib/Serialization/GlobalModuleIndex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Serialization/GlobalModuleIndex.cpp b/lib/Serialization/GlobalModuleIndex.cpp index 630646f96b..3b60979e75 100644 --- a/lib/Serialization/GlobalModuleIndex.cpp +++ b/lib/Serialization/GlobalModuleIndex.cpp @@ -22,7 +22,7 @@ #include "llvm/ADT/StringExtras.h" #include "llvm/Bitcode/BitstreamReader.h" #include "llvm/Bitcode/BitstreamWriter.h" -#include "llvm/Support/Filesystem.h" +#include "llvm/Support/FileSystem.h" #include "llvm/Support/LockFileManager.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/PathV2.h" |