diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-06-16 06:46:16 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-06-16 06:46:16 +0000 |
commit | b94f05221c23d1385fd128e240fce1f59682a92d (patch) | |
tree | 71c7b1e98a12aef0e393f0c56939a00c4801e0a8 /llvm/unittests/Support/Path.cpp | |
parent | 055ebc348d81bb52d4eb549927457b6a16838a0d (diff) | |
download | bcm5719-llvm-b94f05221c23d1385fd128e240fce1f59682a92d.tar.gz bcm5719-llvm-b94f05221c23d1385fd128e240fce1f59682a92d.zip |
llvm/unittests/Support/Path.cpp: Use <windows.h> instead of <Windows.h>.
llvm-svn: 239804
Diffstat (limited to 'llvm/unittests/Support/Path.cpp')
-rw-r--r-- | llvm/unittests/Support/Path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/Path.cpp b/llvm/unittests/Support/Path.cpp index 262d27260ce..210b3a04cb2 100644 --- a/llvm/unittests/Support/Path.cpp +++ b/llvm/unittests/Support/Path.cpp @@ -16,7 +16,7 @@ #include "gtest/gtest.h" #ifdef LLVM_ON_WIN32 -#include <Windows.h> +#include <windows.h> #include <winerror.h> #endif |