From 6dc896812423b7201492a116895df6c8c9601acf Mon Sep 17 00:00:00 2001 From: Martin Storsjo Date: Mon, 10 Sep 2018 20:28:06 +0000 Subject: [PATCH] [Windows] Include BaseTsd.h with lowercase This fixes building on a case sensitive filesystem with mingw-w64 headers, where all headers are lowercase. This header actually also is named with a lowercase name in the Windows SDK as well. Differential Revision: https://reviews.llvm.org/D51877 llvm-svn: 341857 --- compiler-rt/lib/profile/WindowsMMap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/profile/WindowsMMap.h b/compiler-rt/lib/profile/WindowsMMap.h index 271619a..ac2c911 100644 --- a/compiler-rt/lib/profile/WindowsMMap.h +++ b/compiler-rt/lib/profile/WindowsMMap.h @@ -12,7 +12,7 @@ #if defined(_WIN32) -#include +#include #include #include -- 2.7.4