diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2005-01-02 09:45:04 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2005-01-02 09:45:04 +0000 |
commit | d6b1f5fee6bc5294d926f97f4da3863a03377c52 (patch) | |
tree | d9b2bbc49d0dd110c39b4b022541857b7ee8e457 /lib/System/DynamicLibrary.cpp | |
parent | 2ee430cc3caabac9c439e7c6343a643d586f2eae (diff) |
Correct the case of a #include directory name, just in case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19254 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/DynamicLibrary.cpp')
-rw-r--r-- | lib/System/DynamicLibrary.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/DynamicLibrary.cpp b/lib/System/DynamicLibrary.cpp index 0c3caac0f1..e458d84927 100644 --- a/lib/System/DynamicLibrary.cpp +++ b/lib/System/DynamicLibrary.cpp @@ -22,7 +22,7 @@ #ifdef LLVM_ON_WIN32 -#include "win32/DynamicLibrary.cpp" +#include "Win32/DynamicLibrary.cpp" #else |