summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2013-12-25 10:50:11 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2013-12-25 10:50:11 +0000
commit97d9733a38e5e02f2ac38fcdce607671211e08bf (patch)
tree5a71ed3212a32f8dc3967a563d83b4dd08c08c9e /unittests
parent7dc193619e1cc49ecd7e04a365f0456454087de9 (diff)
downloadllvm-97d9733a38e5e02f2ac38fcdce607671211e08bf.tar.gz
llvm-97d9733a38e5e02f2ac38fcdce607671211e08bf.tar.bz2
llvm-97d9733a38e5e02f2ac38fcdce607671211e08bf.tar.xz
unittests/Support/ProcessTest.cpp: Don't use "windows.h". Use <windows.h> instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198011 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Support/ProcessTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Support/ProcessTest.cpp b/unittests/Support/ProcessTest.cpp
index 27c2318215..af6a6f921b 100644
--- a/unittests/Support/ProcessTest.cpp
+++ b/unittests/Support/ProcessTest.cpp
@@ -11,7 +11,7 @@
#include "gtest/gtest.h"
#ifdef LLVM_ON_WIN32
-#include "windows.h"
+#include <windows.h>
#endif
namespace {